add apt upgrade to Dockerfile
Some checks failed
trivy-scan-image / trivy_image_scan (push) Failing after 30s

This commit is contained in:
2026-02-04 23:20:37 +01:00
parent 794bc5cb97
commit 5053791991

View File

@@ -12,6 +12,7 @@ RUN apt-get update && \
if [ "$TARGETPLATFORM" = "linux/arm/v7" ] || [ "$TARGETPLATFORM" = "linux/386" ]; then \
apt-get install -y --no-install-recommends zlib1g-dev libjpeg-dev gcc; \
fi && \
apt-get upgrade -y &&\
apt-get clean && \
rm -rf /var/lib/apt/lists/*