chore: upgrade top level docker alpine version

This commit is contained in:
Nick
2025-05-19 00:13:01 -06:00
committed by GitHub
parent cb9fd38271
commit 5913d81a44
+3 -3
View File
@@ -1,5 +1,5 @@
# Build image
FROM rust:alpine3.16 AS chef
FROM rust:alpine3.21 AS chef
RUN set -x \
# Add user
@@ -41,9 +41,9 @@ RUN cargo build --release -p lldap -p lldap_migration_tool -p lldap_set_password
&& ./app/build.sh
# Final image
FROM alpine:3.19
FROM alpine:3.21
ENV GOSU_VERSION 1.14
ENV GOSU_VERSION=1.14
# Fetch gosu from git
RUN set -eux; \
\