Skip to content
Snippets Groups Projects
Commit abf4676a authored by Marco Martorana's avatar Marco Martorana
Browse files

Added this in the Docker file before npm install:

RUN apk add --update python make g++\
   && rm -rf /var/cache/apk/*

This was to fix this error "gyp ERR! find Python":
> sleep@6.3.0 install /app/node_modules/sleep
> node-gyp rebuild
gyp ERR! find Python
parent a1d3a5de
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,8 @@ RUN mkdir -p /app
WORKDIR /app
COPY package.json /app
RUN apk add --update python make g++\
&& rm -rf /var/cache/apk/*
RUN npm install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment