diff options
author | Camil Staps | 2016-11-01 13:06:08 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-01 13:06:08 +0100 |
commit | 233891aa76a00a530c3a935acd62803d6d6718c3 (patch) | |
tree | e2f42004d641ce2d0563a9618ef100849fb472d0 /Dockerfile | |
parent | Update CleanReadLine; minify Docker image (diff) |
gcc is always needed
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 \ |