Update Dockerfile

This commit is contained in:
Alexandre
2022-02-19 10:08:26 +01:00
committed by GitHub
parent 6c21032ecc
commit 8030a500ff

View File

@@ -28,10 +28,10 @@ FROM anthonyraymond/joal:$BUILD_UPSTREAM
# hadolint ignore=SC2015,DL4006
RUN \
if ! command -v curl >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends curl || apk add --no-cache curl); fi \
&& curl -s -S -J -L -o /tmp/joal.tar.gz $(curl -s https://api.github.com/repos/anthonyraymond/joal/releases/latest | grep -o "http.*joal.tar.gz") >/dev/null \
&& curl -s -S -J -L -o /tmp/joal.tar.gz "$(curl -s https://api.github.com/repos/anthonyraymond/joal/releases/latest | grep -o "http.*joal.tar.gz")" >/dev/null \
&& mkdir -p /data/joal \
&& tar zxvf /tmp/joal.tar.gz -C /data/joal >/dev/null \
&& chown -R "$(id -u):$(id -g)" /data/joal \
&& chown -R "$(id -u)":"$(id -g)" /data/joal \
&& rm /data/joal/jack-of* || true
##################