1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-05-18 15:00:04 +02:00

Move the ROCKET_ENV to the runtime image

Dieser Commit ist enthalten in:
Miroslav Prasil 2018-07-12 13:25:15 +01:00
Ursprung 470ad14616
Commit 79fccccad7

Datei anzeigen

@ -6,7 +6,6 @@ FROM node:9-alpine as vault
ENV VAULT_VERSION "1.27.0"
ENV URL "https://github.com/bitwarden/web/archive/v${VAULT_VERSION}.tar.gz"
ENV ROCKET_ENV "staging"
RUN apk add --update-cache --upgrade \
curl \
@ -68,6 +67,8 @@ RUN cargo build --release
# because we already have a binary built
FROM debian:stretch-slim
ENV ROCKET_ENV "staging"
# Install needed libraries
RUN apt-get update && apt-get install -y\
openssl\