diff --git a/Dockerfile b/Dockerfile index 83044f6..74f9f26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.21 AS builder COPY / /app WORKDIR /app/cmd -RUN CGO_ENABLED=0 GOOS=linux go build -o main +RUN CGO_ENABLED=1 GOOS=linux go build -o main FROM alpine:latest AS production WORKDIR /