Update base image version.

This commit is contained in:
Orne Brocaar 2024-12-06 09:54:54 +00:00
parent 092c119cdc
commit 7936955a19

View File

@ -1,5 +1,5 @@
# Copy binary stage # Copy binary stage
FROM --platform=$BUILDPLATFORM alpine:3.18.0 as binary FROM --platform=$BUILDPLATFORM alpine:3.21.0 as binary
ARG TARGETPLATFORM ARG TARGETPLATFORM
@ -20,11 +20,11 @@ RUN case "$TARGETPLATFORM" in \
esac; esac;
# Final stage # Final stage
FROM alpine:3.18.0 FROM alpine:3.21.0
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates ca-certificates
COPY --from=binary /usr/bin/chirpstack /usr/bin/chirpstack COPY --from=binary /usr/bin/chirpstack /usr/bin/chirpstack
USER nobody:nogroup USER nobody:nogroup
ENTRYPOINT ["/usr/bin/chirpstack"] ENTRYPOINT ["/usr/bin/chirpstack"]