From 3d23491a3a8d269b29adc4ab97bb201c097e05a8 Mon Sep 17 00:00:00 2001 From: KD Puvvadi Date: Tue, 7 Feb 2023 11:41:48 +0530 Subject: [PATCH] Dockerfile apk update - Use --no-cache instead of apk update - use latest alpine version --- build/docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/docker/Dockerfile b/build/docker/Dockerfile index af796fa..2a666b8 100644 --- a/build/docker/Dockerfile +++ b/build/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine -RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/* +FROM alpine:latest +RUN apk add ca-certificates --no-cache COPY fast / -CMD ["/fast"] \ No newline at end of file +CMD ["/fast"]