summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index ec7d8a6a27..be2768033d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,12 +21,11 @@ RUN apk add --no-cache \
pkgconfig \
python \
zlib-dev
-RUN npm i -g yarn
COPY package.json ./
-RUN yarn install
+RUN npm i
COPY . ./
-RUN yarn build
+RUN npm run build
FROM base AS runner