From a51323811e931d1c5e512e9ebb98cd28b54e73d5 Mon Sep 17 00:00:00 2001 From: talksik Date: Sun, 1 Oct 2023 14:32:22 -0700 Subject: [PATCH] trying to fix bug --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 74f9f26..74a0df5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app/cmd RUN CGO_ENABLED=1 GOOS=linux go build -o main FROM alpine:latest AS production +COPY --from=builder /app/cmd / WORKDIR / -COPY --from=builder /app/cmd . CMD ["./main"]