From 6e042ca344d8ec11ad4cf90468354cee39bf66f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Sun, 14 Jul 2019 09:58:45 +0900 Subject: [PATCH] Revert "Docker: Back to npm from yarn (#4730)" This reverts commit 112a72abdfb78f8f6c76891e721029f4dc87d5c3. --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab8be6c68..33dfe2805 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,11 +21,12 @@ RUN apk add --no-cache \ pkgconfig \ python \ zlib-dev +RUN npm i -g yarn COPY package.json ./ -RUN npm i +RUN yarn install COPY . ./ -RUN npm run build +RUN yarn build FROM base AS runner