aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorCamil Staps2016-11-01 13:06:08 +0100
committerCamil Staps2016-11-01 13:06:08 +0100
commit233891aa76a00a530c3a935acd62803d6d6718c3 (patch)
treee2f42004d641ce2d0563a9618ef100849fb472d0 /Dockerfile
parentUpdate CleanReadLine; minify Docker image (diff)
gcc is always needed
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index f03f288..f3ef584 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,7 @@
FROM camilstaps/clean:itasks-latest
+RUN apt-get update -qq && apt-get install -qq gcc
+
COPY make_abc.sh .
RUN ./make_abc.sh
@@ -7,7 +9,7 @@ RUN touch /home/.iclean_history /home/.iclean_template
COPY . /usr/src/iclean
WORKDIR /usr/src/iclean
-RUN PACKAGES="libreadline-dev make gcc" \
+RUN PACKAGES="libreadline-dev make" \
&& apt-get update -qq \
&& apt-get install -qq $PACKAGES \
&& make -B \