JacobiteDE
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
5 deletions
-
Dockerfile.alpine
|
|
@ -20,7 +20,7 @@ RUN ls |
|
|
|
|
|
|
|
########################## BUILD IMAGE ########################## |
|
|
|
# Musl build image for statically compiled binary |
|
|
|
FROM clux/muslrust:nightly-2018-12-01 as build |
|
|
|
FROM clux/muslrust:stable as build |
|
|
|
|
|
|
|
# set sqlite as default for DB ARG for backward comaptibility |
|
|
|
ARG DB=sqlite |
|
|
@ -50,7 +50,7 @@ RUN cargo build --features ${DB} --release |
|
|
|
######################## RUNTIME IMAGE ######################## |
|
|
|
# Create a new stage with a minimal image |
|
|
|
# because we already have a binary built |
|
|
|
FROM alpine:3.9 |
|
|
|
FROM alpine |
|
|
|
|
|
|
|
ENV ROCKET_ENV "staging" |
|
|
|
ENV ROCKET_PORT=80 |
|
|
|