From a64c21d5307a9956780229a21507727ff13aaf97 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 20 Dec 2020 11:23:25 +0100 Subject: [PATCH] Update Dockerfile --- joal/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/joal/Dockerfile b/joal/Dockerfile index a954c8140..daca6308c 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -1,11 +1,11 @@ ARG BUILD_FROM FROM $BUILD_FROM -RUN mkdir -p /joal \ +RUN mkdir -p /tmp/resources \ && curl -L -s \ "https://github.com/anthonyraymond/joal/releases/download/2.1.24/joal.tar.gz" \ - | tar zxvf - -C /joal \ - && chown -R $(id -u):$(id -g) /joal \ + | tar zxvf - -C /tmp/resources \ + && chown -R $(id -u):$(id -g) /tmp/resources \ && rm -fr \ /tmp/*