This commit is contained in:
Mateusz Gruszczyński
2026-07-20 20:49:18 +02:00
parent 8666583435
commit 4361230c8b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM rust:1.85-bookworm AS builder
FROM rust:slim-trixie AS builder
WORKDIR /app
COPY Cargo.toml Cargo.lock ./
@@ -8,7 +8,7 @@ COPY static ./static
RUN cargo build --release
FROM debian:bookworm-slim AS runtime
FROM debian:13-slim AS runtime
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl \
&& rm -rf /var/lib/apt/lists/* \