mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-07-01 00:08:28 +02:00
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:
2
gradle/changelog/alpine_3.16.0
Normal file
2
gradle/changelog/alpine_3.16.0
Normal 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))
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user