From 80a1e5e85ec890957b0b429a18ff02004267035b Mon Sep 17 00:00:00 2001 From: Jordan Knott Date: Fri, 14 Aug 2020 12:35:56 -0500 Subject: [PATCH] fix(Dockerfile): remove config file from being added because config settings can now be set through ENV variables or cli flag, we should no longer load a default config file in the dockerfile let the user decide if they want to load one through volumes --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69d1398..1fbdad9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,5 +17,4 @@ RUN go run cmd/mage/main.go backend:genFrontend backend:genMigrations backend:bu FROM alpine:latest WORKDIR /root/ COPY --from=backend /usr/src/app/dist/taskcafe . -COPY --from=backend /usr/src/app/conf/app.example.toml conf/app.toml CMD ["./taskcafe", "web"]