Update Dockerfile

This commit is contained in:
Alexandre
2020-12-20 11:23:25 +01:00
committed by GitHub
parent 24af1e0159
commit a64c21d530

View File

@@ -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/*