diff --git a/docker/composite/Dockerfile b/docker/composite/Dockerfile index 3e909d2..787dcca 100644 --- a/docker/composite/Dockerfile +++ b/docker/composite/Dockerfile @@ -14,3 +14,5 @@ RUN /tmp/install.bash 6 RUN /tmp/install.bash 7 RUN /tmp/install.bash 8 RUN /tmp/install.bash 9 + +RUN rm /tmp/install.bash diff --git a/docker/composite/install.bash b/docker/composite/install.bash index fae80fe..15b0ea6 100755 --- a/docker/composite/install.bash +++ b/docker/composite/install.bash @@ -10,7 +10,7 @@ function riju-curl { function riju-apt-install { riju-curl "$1" > "$(basename "$1")" - apt-get reinstall -y "./$(basename "$1")" + apt-get install -y "./$(basename "$1")" } pushd /tmp @@ -27,5 +27,3 @@ rm -rf *.deb rm -rf /var/lib/apt/lists/* popd - -rm "$0"