From 07634ef50314b02856d3477107ed0c56c7517b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cmarselinowidis=E2=80=9D?= <“marselinowidis@gmail.com”> Date: Tue, 17 Jan 2023 23:28:01 +0700 Subject: [PATCH] fix dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e8ba6a4..9de01c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:8-alpine WORKDIR /app COPY package.json /app -RUN yarn +RUN yarn install --frozen-lockfile COPY . /app CMD npm run watch EXPOSE 8080 \ No newline at end of file