aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2020-06-30 13:28:36 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2020-06-30 13:29:02 +0200
commit14931be4fc01f26f54142f0e691b6afde057b932 (patch)
tree4ffae97a54d8fb1496778af455a23bbae867ef4b /Dockerfile
parent2544192012cafef05b739c706a893ef0bd4f4d65 (diff)
Do not leave apk cache behind
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 721b64a..7f64956 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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