aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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 \