Files
zero2prod/Dockerfile
2024-02-19 17:49:19 +01:00

12 lines
206 B
Docker

FROM rust:1.76.0
WORKDIR /app
RUN apt update && apt install lld clang -y
COPY . .
ENV SQLX_OFFLINE true
RUN cargo build --release
ENV APP_ENVIRONMENT production
ENTRYPOINT ["./target/release/zero2prod"]