Skip to content

Commit

Permalink
fix/update documentation start command
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleythedeveloper committed Aug 14, 2024
1 parent 09146bb commit 2a4e9a8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions documentation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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


0 comments on commit 2a4e9a8

Please sign in to comment.