update rust & alpine versions
All checks were successful
arche-build-and-publish / gractwo-arche-build-test (push) Successful in 5m32s

rust 1.90.0 -> 1.94.1
alpine 3.18 -> 3.23.3
This commit is contained in:
2026-03-30 14:38:18 +02:00
parent f97691234b
commit dd6ae0dc23

View File

@@ -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/