From ec7e72a0cd7f5dafcb60eb520060454a6aa6dd11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lo=C3=AFs?= <elois@ifee.fr> Date: Wed, 20 Jun 2018 15:53:36 +0000 Subject: [PATCH] add zip and tar --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a60f154..33c8763 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,9 @@ MAINTAINER elois <elois@ifee.fr> ENV DEBIAN_FRONTEND noninteractive ENV CUSTOM_VAR_ENV value -RUN apt-get update; \ - apt-get install -y build-essential curl python-pip sudo pkg-config libssl-dev +RUN apt-get update && \ + apt-get install -y build-essential curl python-pip pkg-config libssl-dev sudo tar zip && \ + apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* RUN useradd --create-home -s /bin/bash user WORKDIR /home/user -- GitLab