From df80e53866e7b31d9b190f1e738b6de69bde7400 Mon Sep 17 00:00:00 2001 From: Olivier Thomann Date: Thu, 9 Jan 2020 12:09:28 -0500 Subject: [PATCH] Make sure all alpine packages are updated to their latest versions. --- images/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/Dockerfile b/images/Dockerfile index 80e793e1551..257d12c6359 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -1,4 +1,5 @@ FROM alpine:latest -RUN apk add --update git openssh-client - +RUN apk add --update git openssh-client \ + && apk update \ + && apk upgrade \ No newline at end of file