From 30a21a32d38a7c92ad5779f334ac8fc2645ac5b6 Mon Sep 17 00:00:00 2001 From: Henrique Miranda Date: Sun, 8 Sep 2024 22:42:26 -0300 Subject: [PATCH] remove .env file from docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eeb0e0b..917562f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,5 @@ FROM alpine:latest WORKDIR /app COPY --from=builder app/static/ ./static/ -COPY --from=builder app/main app/.env . +COPY --from=builder app/main . CMD ["./main"]