Add wget to fix docker health check (#2066)

Installs the command wget in the debian docker container, so that the health check can run.
This commit is contained in:
René Pfeuffer
2022-06-09 22:38:38 +02:00
committed by GitHub
parent 3bb3119faf
commit 19218c7237
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
- type: fixed
description: Add wget to fix docker health check ([#2066](https://github.com/scm-manager/scm-manager/pull/2066))

View File

@@ -50,7 +50,7 @@ COPY build/docker/opt /opt
RUN set -x \
&& apt-get update \
# libfreetype6 libfontconfig1 graphviz
&& apt-get install -y --no-install-recommends libfreetype6 libfontconfig1 graphviz mercurial bash ca-certificates \
&& apt-get install -y --no-install-recommends libfreetype6 libfontconfig1 graphviz mercurial bash ca-certificates wget \
# use gid 0 for openshift compatibility
&& useradd -d "${SCM_HOME}" -u 1000 -g 0 -m -s /bin/bash scm \
&& mkdir -p ${SCM_HOME} ${CACHE_DIR} \