diff --git a/Dockerfile b/Dockerfile index 664c1c4..7261f0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ FROM debian:experimental ENV NSIS_VERSION 3.01-1 -RUN apt-get -t experimental update && apt-get -t experimental install -y nsis=${NSIS_VERSION} +RUN apt-get -t experimental update && \ + apt-get -t experimental install -y nsis=${NSIS_VERSION} && \ + apt-get clean ENTRYPOINT ["makensis", "-V4"] \ No newline at end of file diff --git a/README.md b/README.md index 6847e19..16d2e8b 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ --------------- ### Features -- Only meant to compile NSIS scripts -- Uses Debian experimental as it's the only Debian branch that has NSIS version 3. +- Meant to compile NSIS scripts +- Uses Debian experimental as it's the only Debian branch that has NSIS version 3 package. - Has the `NSIS 3.01-1` package installed. - Entrypoint is `makensis -V4`, therefore logging is enabled by default. @@ -34,4 +34,4 @@ docker run -it \ ### Possible modifications -- `ENTRYPOINT` can be modified in command/compose to run an `nsis command` of your choice. \ No newline at end of file +- `ENTRYPOINT` can be modified in command/compose to run a command of your choice. \ No newline at end of file