mirror of
https://github.com/kristoferssolo/zero2prod.git
synced 2025-10-21 20:10:40 +00:00
9 lines
211 B
Docker
9 lines
211 B
Docker
FROM rust:1.77.0
|
|
WORKDIR /app
|
|
RUN apt-get update && apt-get install lld clang -y
|
|
COPY . .
|
|
ENV SQLX_OFFLINE true
|
|
RUN cargo build --release
|
|
ENV APP_ENVIRONMENT production
|
|
ENTRYPOINT ["./target/release/zero2prod"]
|