From b2b56e09af0ec937a74291d2582cc038fde950e8 Mon Sep 17 00:00:00 2001 From: Dennis Marttinen <38858901+twelho@users.noreply.github.com> Date: Sun, 29 Dec 2019 22:16:28 +0200 Subject: [PATCH] Use --no-cache when installing ca-certificates in the Dockerfile Signed-off-by: Dennis Marttinen <38858901+twelho@users.noreply.github.com> --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e822815..49ce7a4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM frolvlad/alpine-glibc:glibc-2.28 WORKDIR /app -RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/* +RUN apk add --no-cache ca-certificates ADD gotify-app /app/ EXPOSE 80 ENTRYPOINT ["./gotify-app"] \ No newline at end of file