From 79c024a10d0107df49eba9a09c55179841b261fc Mon Sep 17 00:00:00 2001 From: stefan080106 Date: Tue, 7 Jun 2022 23:29:35 +0200 Subject: [PATCH] :whale: Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 249ec4b..ecaf1ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM node:12 +FROM node WORKDIR /usr/src/app COPY . ./ # building the app -RUN npm i +RUN npm i -f RUN npm run build # Running the app