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
This commit is contained in:
Jordan Knott 2020-08-14 12:35:56 -05:00 committed by GitHub
parent 3d4a0ff28c
commit 80a1e5e85e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]