diff --git a/Dockerfile b/Dockerfile index 0f12ccf..e1d1572 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1-alpine AS chef +FROM docker.io/library/rust:1-alpine AS chef RUN apk add --no-cache musl-dev RUN cargo install cargo-chef WORKDIR /app @@ -15,7 +15,9 @@ RUN cargo chef cook --release --recipe-path recipe.json COPY . . RUN cargo build --release -FROM alpine AS runtime -WORKDIR /app -COPY --from=builder /app/target/release/cr-web-test /usr/local/bin -ENTRYPOINT ["/usr/local/bin/cr-web-test"] \ No newline at end of file +FROM scratch AS runtime +WORKDIR / +COPY --from=builder /app/target/release/cr-web-test / +ENV ROCKET_ADDRESS 0.0.0.0 +ENV ROCKET_PORT 80 +ENTRYPOINT ["/cr-web-test"]