Skip to content

Commit

Permalink
Including apt-get clean to reduce image size and updating README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HP41 committed Jul 6, 2017
1 parent f23212d commit 9637621
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -34,4 +34,4 @@ docker run -it \

### Possible modifications

- `ENTRYPOINT` can be modified in command/compose to run an `nsis command` of your choice.
- `ENTRYPOINT` can be modified in command/compose to run a command of your choice.

0 comments on commit 9637621

Please sign in to comment.