summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile10
1 files changed, 3 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index 7e15967b05..4d7d450f8f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,15 +23,11 @@ RUN apk add --no-cache \
procps \
python \
zlib-dev
-RUN npm i -g node-gyp
-
-COPY ./package.json ./
-RUN npm i
+RUN npm i -g yarn
COPY . ./
-RUN node-gyp configure \
- && node-gyp build \
- && npm run build
+RUN yarn install
+RUN yarn build
FROM base AS runner