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/