From 68a5d408558e8d751e4ec441eb6f1ca21f37c46f Mon Sep 17 00:00:00 2001 From: Andrew Underwood Date: Fri, 1 Mar 2024 19:48:46 -0800 Subject: [PATCH] update command syntax --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7737a69..f3c9918 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /build COPY package-lock.json package.json ./ RUN npm install COPY . ./ -RUN npm run-script build +RUN npm run build FROM nginx:alpine as serve