From db9cd08e7ab3bd8b4c3da6e726c4a7541d4f647d Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Sat, 1 Feb 2020 10:35:02 +0100 Subject: [PATCH] Update Dockerfile to use Alpine 3.11 Reduce size of image by using --no-cache --- api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 958af297d..12a84a769 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.8 +FROM alpine:3.11 RUN \ echo 'installing dependencies' && \ - apk add \ + apk add --no-cache \ bash \ git \ gettext \