diff --git a/Dockerfile b/Dockerfile index d0c6f818df543096399b42336019c752837f878a..623574d13a405ecb592d954156b8d2fa54c510ce 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 . diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8c750dbc3431b4f84b8fb71e6b7b47fb437a0b8e..6b8f0e9ac4220b4afcf7d78f75f1d7b4e8da93fa 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -82,9 +82,8 @@ RUN [ "cross-build-end" ] VOLUME /data EXPOSE 80 -# 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/aarch64-unknown-linux-gnu/release/bitwarden_rs . diff --git a/Dockerfile.alpine b/Dockerfile.alpine index c42d666600ce5304f1ed1ea2682db08265c23955..f451e8383493b783cdc202473c2e4656ee35c64c 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -56,9 +56,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/x86_64-unknown-linux-musl/release/bitwarden_rs . diff --git a/Dockerfile.armv7 b/Dockerfile.armv7 index 14a0857f301f368ef43a0fa3192c3157c03d9c0d..c5fc9449623fcadfc553e92df1ff899ea3fc4719 100644 --- a/Dockerfile.armv7 +++ b/Dockerfile.armv7 @@ -82,9 +82,8 @@ RUN [ "cross-build-end" ] VOLUME /data EXPOSE 80 -# 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/armv7-unknown-linux-gnueabihf/release/bitwarden_rs .