From dd6ae0dc235653fd259c853f1ba0c1b428fb4d83 Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Mon, 30 Mar 2026 14:38:18 +0200 Subject: [PATCH] update rust & alpine versions rust 1.90.0 -> 1.94.1 alpine 3.18 -> 3.23.3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5fc8d52..3c8d494 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG RUST_VERSION=1.90.0 +ARG RUST_VERSION=1.94.1 ARG APP_NAME=arche ################################################################################ @@ -42,7 +42,7 @@ RUN --mount=type=bind,source=src,target=src \ # By specifying the "3.18" tag, it will use version 3.18 of alpine. If # reproducibility is important, consider using a digest # (e.g., alpine@sha256:664888ac9cfd28068e062c991ebcff4b4c7307dc8dd4df9e728bedde5c449d91). -FROM alpine:3.18 AS final +FROM alpine:3.23.3 AS final # Create a non-privileged user that the app will run under. # See https://docs.docker.com/go/dockerfile-user-best-practices/