From 2a4e9a8aa9f199898b69c179cb62e459a3f69c7a Mon Sep 17 00:00:00 2001 From: Ashley Harwood Date: Wed, 14 Aug 2024 15:59:58 +1000 Subject: [PATCH] fix/update documentation start command --- documentation/Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/documentation/Dockerfile b/documentation/Dockerfile index 5244e15a..0037523b 100644 --- a/documentation/Dockerfile +++ b/documentation/Dockerfile @@ -13,15 +13,13 @@ COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile -# Build the documentation site +# Copy the documentation site files COPY . . -RUN yarn run build - # Expose the port the documentation site will run on EXPOSE ${PORT} -# Serve the documentation site -CMD yarn serve --port $PORT --host 0.0.0.0 +# Start the documentation site +CMD yarn start --port $PORT --host 0.0.0.0