aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorDaniel García <[email protected]>2019-01-07 01:36:01 +0100
committerDaniel García <[email protected]>2019-01-07 01:43:37 +0100
commit62b8500aaebcbc6c60671a9f7827a188e66c02cd (patch)
tree60fb3d1acf3d079e45e3e34c8613f0a6abae45c9 /Dockerfile
parentf645e5381c614ef8e07fd3123411ee2c460d9468 (diff)
downloadvaultwarden-62b8500aaebcbc6c60671a9f7827a188e66c02cd.tar.gz
vaultwarden-62b8500aaebcbc6c60671a9f7827a188e66c02cd.zip
Fix missing .env error in Dockerfile, the .env file is not needed for the Docker images
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index d0c6f818..623574d1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 .