fix: run scripts during Docker build to enable node-gyp-based deps

This commit is contained in:
Ruben Taelman 2021-05-10 13:50:50 +02:00 committed by Matthieu Bosquet
parent 767a3026cf
commit 079101d951

View File

@ -11,7 +11,7 @@ COPY package*.json ./
COPY . .
## Install and build the Solid community server (prepare script cannot run in wd)
RUN npm ci --ignore-scripts && npm run build
RUN npm ci && npm run build