From 9943dce7e7931dc932400e4527da5f20c00d8e9f Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 9 Mar 2022 21:25:17 +0100 Subject: [PATCH] node 17 with node-gyp dependencies --- frontend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index b8709f814..a79b22fb9 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,7 +1,7 @@ ################################################################################## # BASE ########################################################################### ################################################################################## -FROM node:16.14.0-alpine3.14 as base +FROM node:17.6.0-alpine3.14 as base # ENVs (available in production aswell, can be overwritten by commandline or env file) ## DOCKER_WORKDIR would be a classical ARG, but that is not multi layer persistent - shame @@ -31,8 +31,8 @@ LABEL org.label-schema.schema-version="1.0" LABEL maintainer="support@ogradido.net" # Install Additional Software -## install: git -#RUN apk --no-cache add git +## install: node-gyp dependencies +RUN apk --no-cache add g++ make python # Settings ## Expose Container Port