From d7573fb79e540069947617279dbd39d3459e901e Mon Sep 17 00:00:00 2001 From: talksik Date: Sun, 1 Oct 2023 14:35:03 -0700 Subject: [PATCH] trying another path --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74a0df5..14615ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,6 @@ 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"]