Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Co-authored-by: Sleeyax <[email protected]>
  • Loading branch information
bhardwajRahul and sleeyax authored Oct 10, 2024
1 parent 5f62d1f commit 65629d0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ WORKDIR /app

RUN npm install -g pnpm

# Install dependencies (this step is cached as long as the dependencies don't change)
COPY package.json package-lock.json .
RUN pnpm install

# Copy the rest of your app's source code
COPY . .

# Install dependencies
RUN pnpm install

# Expose the port the app runs on
EXPOSE 5173

Expand Down

0 comments on commit 65629d0

Please sign in to comment.