Update docker images

This commit is contained in:
2025-03-08 02:08:22 +01:00
parent 1557d7bae6
commit 5ffa2b828a

View File

@@ -1,4 +1,4 @@
FROM rust:bullseye AS builder_backend FROM rust:bookworm AS builder_backend
WORKDIR /app WORKDIR /app
@@ -7,11 +7,7 @@ COPY . .
RUN cargo build --release --bin backend RUN cargo build --release --bin backend
FROM rust:bullseye AS builder_frontend FROM rust:bookworm AS builder_frontend
RUN apt-get update \
&& apt-get install -y libc6 libc6-dev \
&& rm -rf /var/lib/apt/lists/*
RUN rustup target add wasm32-unknown-unknown RUN rustup target add wasm32-unknown-unknown
@@ -27,7 +23,7 @@ WORKDIR /app/src/frontend
RUN trunk build --release RUN trunk build --release
FROM debian:bullseye-slim FROM debian:bookworm-slim
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y openssl ca-certificates curl jq \ && apt-get install -y openssl ca-certificates curl jq \