aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index bccfdd6fc..46cc95913 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,14 +17,11 @@ RUN apt-get update -y \
17WORKDIR /usr/src/ferdi 17WORKDIR /usr/src/ferdi
18 18
19RUN npm i -g pnpm@6.16.0 \ 19RUN npm i -g pnpm@6.16.0 \
20 && npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 \ 20 && npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0
21 && npm ls -g lerna@4.0.0 || npm i -g lerna@4.0.0
22 21
23COPY package*.json . 22COPY package*.json .
24COPY lerna.json .
25 23
26RUN npm i \ 24RUN npm i
27 && npx lerna bootstrap
28 25
29COPY . . 26COPY . .
30 27