From a7ed60ee123d91a1c2c332fa74c1703e98e9fb32 Mon Sep 17 00:00:00 2001 From: "mathieu.brunot" Date: Tue, 11 Jun 2019 20:58:21 +0200 Subject: [PATCH] :heavy_plus_sign: Add curl Signed-off-by: mathieu.brunot --- docker/release.backend/Dockerfile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docker/release.backend/Dockerfile b/docker/release.backend/Dockerfile index a5b6b9dd28..d48cf85160 100644 --- a/docker/release.backend/Dockerfile +++ b/docker/release.backend/Dockerfile @@ -6,19 +6,20 @@ ENV CLOJURE_VERSION=1.10.0.442 \ LANG=en_US.UTF-8 \ LC_ALL=C.UTF-8 +RUN set -ex; \ + apt-get update -yq && \ + apt-get install -yq \ + curl \ + git \ + imagemagick \ + webp + RUN set -ex; \ wget "https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh"; \ chmod +x "linux-install-$CLOJURE_VERSION.sh"; \ "./linux-install-$CLOJURE_VERSION.sh"; \ rm -rf "linux-install-$CLOJURE_VERSION.sh" -RUN set -ex; \ - apt-get update -yq && \ - apt-get install -yq \ - git \ - imagemagick \ - webp - COPY ./entrypoint.sh /entrypoint.sh COPY ./dist /srv/uxbox