|
@@ -144,6 +144,7 @@ EXPOSE 3012
|
|
|
|
|
|
# Copies the files from the context (Rocket.toml file and web-vault)
|
|
|
# and the binary from the "build" stage to the current stage
|
|
|
+WORKDIR /
|
|
|
COPY Rocket.toml .
|
|
|
COPY --from=vault /web-vault ./web-vault
|
|
|
COPY --from=build /app/target/armv7-unknown-linux-gnueabihf/release/bitwarden_rs .
|
|
@@ -154,6 +155,5 @@ COPY docker/start.sh /start.sh
|
|
|
HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"]
|
|
|
|
|
|
# Configures the startup!
|
|
|
-WORKDIR /
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
|
|
CMD ["/start.sh"]
|