Fix zip CRC error on startup in Alpine image (#2071)

Update docker base image to Alpine 3.16.0.
This fixes https://github.com/scm-manager/scm-manager/issues/2053.
In Alpine 3.16.0 zlib is updated to 1.2.12-r1 with this fix:
https://git.alpinelinux.org/aports/commit/main/zlib?id=6754a9005594de4243aad9b2744546971078c6c7
This is related to the following bug report in Alpine:
https://bugs.archlinux.org/task/74371
This commit is contained in:
René Pfeuffer
2022-06-21 16:06:58 +02:00
committed by GitHub
parent 7f8d5be0dc
commit af30859077
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
- type: fixed
description: Zip CRC error on startup in Alpine image ([#2071](https://github.com/scm-manager/scm-manager/pull/2071))

View File

@@ -23,7 +23,7 @@
#
# Create minimal java version
FROM alpine:3.15.4 as jre-build
FROM alpine:3.16.0 as jre-build
RUN set -x \
&& apk add --no-cache openjdk11-jdk openjdk11-jmods \
@@ -39,7 +39,7 @@ RUN set -x \
# ---
# SCM-Manager runtime
FROM alpine:3.15.4 as runtime
FROM alpine:3.16.0 as runtime
ENV SCM_HOME /var/lib/scm
ENV CACHE_DIR /var/cache/scm/work