newer alpine version
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Johannes Meyer 2026-04-11 19:59:09 +00:00
parent db3dfa6b4e
commit fd7cd93357

View File

@ -3,7 +3,7 @@
# ============================================ # ============================================
# Build Stage # Build Stage
# ============================================ # ============================================
FROM alpine:3.20 AS build FROM alpine:latest AS build
# Nur die benötigten Pakete installieren mit --no-chache # Nur die benötigten Pakete installieren mit --no-chache
RUN apk add --no-cache gcc musl-dev RUN apk add --no-cache gcc musl-dev
@ -20,7 +20,7 @@ RUN gcc -o deployment deployment.c
# ============================================ # ============================================
# Runtime Stage # Runtime Stage
# ============================================ # ============================================
FROM alpine:3.20 AS runtime FROM alpine:latest AS runtime
# Curl für den HEALTHCHECK # Curl für den HEALTHCHECK
RUN apk add --no-cache curl RUN apk add --no-cache curl