···11# Stage 1: Build the Go binary
22-FROM golang:1.23-alpine3.20 AS builder
22+FROM golang:1.24-alpine3.22 AS build-env
3344# Install SSL ca certificates.
55RUN apk update && apk add --no-cache ca-certificates && update-ca-certificates
+2-2
cmd/supercollider/Dockerfile
···11# Stage 1: Build the Go binary
22-FROM golang:1.23-alpine3.20 AS builder
22+FROM golang:1.24-alpine3.22 AS build-env
3344# Create a directory for the application
55WORKDIR /app
···2323COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
24242525# Copy the binary from the first stage.
2626-COPY --from=builder /supercollider /supercollider
2626+COPY --from=build-env /supercollider /supercollider
27272828# Set the startup command to run the binary
2929CMD ["/supercollider"]