From ec64746a8e3cb7645a27dbf199a6c0a0290200f6 Mon Sep 17 00:00:00 2001 From: Liam <67254223+RealFascinated@users.noreply.github.com> Date: Wed, 26 Oct 2022 17:18:43 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index f75e7be..52c3831 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,10 @@ COPY . . # Uncomment the following line in case you want to disable telemetry during the build. ENV NEXT_TELEMETRY_DISABLED 1 +# Install dependencies +RUN yarn + +# Build the project RUN yarn build # If using npm comment out above and use below instead