diff options
author | Miroslav Prasil <[email protected]> | 2018-07-12 13:25:15 +0100 |
---|---|---|
committer | Miroslav Prasil <[email protected]> | 2018-07-12 13:25:15 +0100 |
commit | 79fccccad778088093bad858258aafd7f2037e70 (patch) | |
tree | c45417f890cc3096bd58e6ffa0c9d7ff71f1988f | |
parent | 470ad14616e99213721458de549fac67890ecf18 (diff) | |
download | vaultwarden-79fccccad778088093bad858258aafd7f2037e70.tar.gz vaultwarden-79fccccad778088093bad858258aafd7f2037e70.zip |
Move the ROCKET_ENV to the runtime image
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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\ |