diff --git a/backend/secretapi/Dockerfile b/backend/secretapi/Dockerfile index 76f8360..4ae3b5e 100644 --- a/backend/secretapi/Dockerfile +++ b/backend/secretapi/Dockerfile @@ -1,6 +1,7 @@ FROM golang:1.26-alpine AS build WORKDIR /src +RUN apk add --no-cache build-base COPY . . RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o /out/secretapi .