1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-09 21:23:58 +00:00

Fix missing .env error in Dockerfile, the .env file is not needed for the Docker images

This commit is contained in:
Daniel García 2019-01-07 01:36:01 +01:00
parent f645e5381c
commit 62b8500aae
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
4 changed files with 4 additions and 8 deletions

View file

@ -76,9 +76,8 @@ VOLUME /data
EXPOSE 80
EXPOSE 3012
# Copies the files from the context (env file and web-vault)
# Copies the files from the context (Rocket.toml file and web-vault)
# and the binary from the "build" stage to the current stage
COPY .env .
COPY Rocket.toml .
COPY --from=vault /web-vault ./web-vault
COPY --from=build app/target/release/bitwarden_rs .