From ee1769f6aaa5e9d4737fee8b77da0975ee8b71d5 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 28 Jan 2022 00:16:52 +0100 Subject: [PATCH] fix(core): update --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bb7d0ee..b6828f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker:19.03.1 +FROM docker:20 RUN apk update && apk add --no-cache \ git \ @@ -15,14 +15,16 @@ RUN apk update && apk add --no-cache \ libgcc \ libstdc++ \ gnupg \ - nodejs-current \ - nodejs-npm \ + nodejs \ + npm \ krb5-libs \ && update-ca-certificates # Add the patch fix COPY ./stack-fix.c /lib/ +RUN node -v && npm -v + # Prepare the libraries packages RUN set -ex \ && apk add --no-cache --virtual .build-deps build-base \