From 50852cd5d63c8f73271ed7fa91d201c473c4b4bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Mino?= Date: Sun, 27 Sep 2020 11:47:56 +0200 Subject: [PATCH] Update base Docker image to alpine 3.12 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab6af17..ed4dd92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.5 +FROM alpine:3.12 MAINTAINER Pierre Besson https://github.com/PierreBesson -RUN apk --update add nodejs git openssh curl bash inotify-tools jq && \ +RUN apk --update add nodejs npm git openssh curl bash inotify-tools jq && \ rm -rf /var/cache/apk/* && \ npm install -g simplywatch@2.5.7 && \ npm install -g git2consul@0.12.13 && \