From d1c339f1464880ee964e6a147511b8d5e6defe20 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 23 Sep 2024 12:43:27 +0200 Subject: [PATCH 1/2] Update dockerfile --- docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 331d21b..7f2b61f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,12 +5,12 @@ LABEL version="1.8.0" LABEL description="Container image to run the IM client. (http://www.grycap.upv.es/im)" # Install python3 -RUN apk add --no-cache python3 py3-requests jq bash +RUN apk add --no-cache python3 py3-requests py3-packaging jq bash openssh-client # Install IM client -RUN apk add --no-cache py3-pip && \ +RUN apk add --no-cache py3-pip git && \ pip3 install im-client==1.8.0 && \ - apk del --no-cache py3-pip + apk del --no-cache py3-pip git COPY im_client.cfg /im-client/im_client.cfg From ebdb42fc53ebf8059b09cc886ae88f32923b708d Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 23 Sep 2024 12:43:54 +0200 Subject: [PATCH 2/2] Update dockerfile --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7f2b61f..fcaec9e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,9 +8,9 @@ LABEL description="Container image to run the IM client. (http://www.grycap.upv. RUN apk add --no-cache python3 py3-requests py3-packaging jq bash openssh-client # Install IM client -RUN apk add --no-cache py3-pip git && \ +RUN apk add --no-cache py3-pip && \ pip3 install im-client==1.8.0 && \ - apk del --no-cache py3-pip git + apk del --no-cache py3-pip COPY im_client.cfg /im-client/im_client.cfg