aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-07-26 04:04:27 +0000
committerLibravatar GitHub <noreply@github.com>2021-07-26 09:34:27 +0530
commit2993efc83e7f557a9c36e7915a54c62c5f90296e (patch)
tree4eab395bfdd230cccf53bf6ec376df8a6114c104 /Dockerfile
parentUpdated CHANGELOG.md with old change logs (diff)
downloadferdium-app-2993efc83e7f557a9c36e7915a54c62c5f90296e.tar.gz
ferdium-app-2993efc83e7f557a9c36e7915a54c62c5f90296e.tar.zst
ferdium-app-2993efc83e7f557a9c36e7915a54c62c5f90296e.zip
Use node-gyp@8.1 for all CI builds (and brings windows at par with macos and linux) (#1690)
Upgraded node-gyp to '8.1.0' (since this was a pre-requisite for it to work on windows os)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index bb0381d31..c78a36596 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,7 +21,7 @@ WORKDIR /usr/src/ferdi
21COPY package*.json ./ 21COPY package*.json ./
22COPY lerna.json ./ 22COPY lerna.json ./
23 23
24RUN npm i -g node-gyp@8.0.0 \ 24RUN npm i -g node-gyp@8.1.0 \
25 && npm config set node_gyp "$(which node-gyp)" 25 && npm config set node_gyp "$(which node-gyp)"
26 26
27COPY . . 27COPY . .