fix(core): update

This commit is contained in:
Philipp Kunz 2022-01-28 00:16:52 +01:00
parent 7b79104520
commit ee1769f6aa

View File

@ -1,4 +1,4 @@
FROM docker:19.03.1 FROM docker:20
RUN apk update && apk add --no-cache \ RUN apk update && apk add --no-cache \
git \ git \
@ -15,14 +15,16 @@ RUN apk update && apk add --no-cache \
libgcc \ libgcc \
libstdc++ \ libstdc++ \
gnupg \ gnupg \
nodejs-current \ nodejs \
nodejs-npm \ npm \
krb5-libs \ krb5-libs \
&& update-ca-certificates && update-ca-certificates
# Add the patch fix # Add the patch fix
COPY ./stack-fix.c /lib/ COPY ./stack-fix.c /lib/
RUN node -v && npm -v
# Prepare the libraries packages # Prepare the libraries packages
RUN set -ex \ RUN set -ex \
&& apk add --no-cache --virtual .build-deps build-base \ && apk add --no-cache --virtual .build-deps build-base \