Skip to content

Commit

Permalink
will this fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianP8701 committed Sep 11, 2024
1 parent de793a3 commit 5d42525
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions server/Dockerfile.websocket
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ FROM node:18

WORKDIR /app

COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
# Copy package.json and install dependencies
COPY package.json ./
RUN yarn install

# Copy the rest of the application code
COPY . .
RUN yarn build

Expand Down

0 comments on commit 5d42525

Please sign in to comment.