aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Dockerfile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index d3589005b..821b7a808 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,13 +17,16 @@ RUN apt-get update -y \
17WORKDIR /usr/src/ferdi 17WORKDIR /usr/src/ferdi
18 18
19RUN npm i -g pnpm@6.14.7 \ 19RUN npm i -g pnpm@6.14.7 \
20 && npm i -g node-gyp@8.1.0 \ 20 && npm ls -g node-gyp@8.1.0 || npm i -g node-gyp@8.1.0 \
21 && npm i -g lerna@4.0.0 21 && npm ls -g lerna@4.0.0 || npm i -g lerna@4.0.0
22 22
23COPY . . 23COPY package*.json .
24COPY lerna.json .
25
26RUN npm i \
27 && npx lerna bootstrap
24 28
25# Note: Ideally this needs to be done before the COPY step - BUT moving this here resolves the issue with `preval-build-info-cli` not being found 29COPY . .
26RUN npx lerna bootstrap
27 30
28WORKDIR /usr/src/ferdi/recipes 31WORKDIR /usr/src/ferdi/recipes
29 32