mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-23 09:11:01 +00:00
Update Dockerfile
This commit is contained in:
parent
d77bd6dc5e
commit
f5283d8746
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM lukemathwalker/cargo-chef:latest-rust-1.59.0 as chef
|
||||
FROM lukemathwalker/cargo-chef:latest-rust-1.72.0 as chef
|
||||
WORKDIR /app
|
||||
RUN apt update && apt install lld clang -y
|
||||
|
||||
|
@ -16,7 +16,7 @@ ENV SQLX_OFFLINE true
|
|||
# Build our project
|
||||
RUN cargo build --release --bin zero2prod
|
||||
|
||||
FROM debian:bullseye-slim AS runtime
|
||||
FROM debian:bookworm-slim AS runtime
|
||||
WORKDIR /app
|
||||
RUN apt-get update -y \
|
||||
&& apt-get install -y --no-install-recommends openssl ca-certificates \
|
||||
|
|
Loading…
Reference in a new issue