From 51d5f44b3c56963fbfb3e9702f2eed222b69b563 Mon Sep 17 00:00:00 2001 From: Christopher Angelo Date: Sat, 20 Mar 2021 05:32:28 +0700 Subject: [PATCH] =?UTF-8?q?fix(Dockerfile):=20remove=20trailing=20backslas?= =?UTF-8?q?h=20=F0=9F=98=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index da32d42..70bb591 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/app COPY package*.json ./ # Install build-essentials - https://github.com/mhart/alpine-node/issues/27#issuecomment-390187978 RUN apk add --no-cache --virtual .build-deps alpine-sdk python3 \ - && yarn install \ + && yarn install COPY . . RUN yarn build