diff options
author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2020-06-30 13:28:36 +0200 |
---|---|---|
committer | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2020-06-30 13:29:02 +0200 |
commit | 14931be4fc01f26f54142f0e691b6afde057b932 (patch) | |
tree | 4ffae97a54d8fb1496778af455a23bbae867ef4b | |
parent | 2544192012cafef05b739c706a893ef0bd4f4d65 (diff) |
Do not leave apk cache behind
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ FROM nginx:alpine WORKDIR /cstate # Install hugo & git -RUN apk add hugo git +RUN apk add --no-cache hugo git # -- First Run -- @@ -16,4 +16,4 @@ RUN mkdir -p /cstate/themes/cstate COPY . /cstate/themes/cstate # Prepare the entrypoint files -COPY ./docker/entrypoint.sh /docker-entrypoint.d/10-build-hugo.sh
\ No newline at end of file +COPY ./docker/entrypoint.sh /docker-entrypoint.d/10-build-hugo.sh |