aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 4f772c0da..c94b42539 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,13 +8,14 @@ COPY lerna.json ./
8# Note: This is being set to bypass the error with missing git repo information for the 'preval-build-info' module 8# Note: This is being set to bypass the error with missing git repo information for the 'preval-build-info' module
9ENV PREVAL_BUILD_INFO_PLACEHOLDERS=true 9ENV PREVAL_BUILD_INFO_PLACEHOLDERS=true
10 10
11RUN npm i node-gyp@8.0.0 \ 11RUN npm i -g node-gyp@8.0.0 \
12 && npm config set node_gyp "$(which node-gyp)" \
12 && npx lerna bootstrap 13 && npx lerna bootstrap
13 14
14COPY . . 15COPY . .
15 16
16RUN cd recipes && npm i && npm run package && cd .. \ 17RUN cd recipes && npm i && npm run package && cd ..
17 && npm run build 18RUN npm run build
18 19
19FROM busybox 20FROM busybox
20 21