trying to fix bug

This commit is contained in:
talksik
2023-10-01 14:32:22 -07:00
parent 8038ce9f3e
commit a51323811e
+1 -1
View File
@@ -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"]