From d4f593c4ce33706f65ca787f1367d86ade329a19 Mon Sep 17 00:00:00 2001 From: Bastian Meissner Date: Sun, 30 Jan 2022 12:45:22 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 902c0af..94bfb80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts AS build WORKDIR /app COPY package.json yarn.lock ./ -RUN yarn install +RUN yarn install --prod COPY . ./ RUN yarn build