Skip to content

Commit

Permalink
install pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Oct 31, 2024
1 parent 2058bd3 commit 891f492
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ FROM node:18-alpine
# Set the working directory in the container
WORKDIR /app

# Install pnpm globally
RUN npm install -g pnpm

# Copy the package.json and package-lock.json files to install dependencies
COPY package*.json ./

Expand All @@ -20,4 +23,4 @@ COPY . .
EXPOSE 3005

# Define the command to run the application
CMD ["pnpm", "start"]
CMD ["pnpm", "start"]

0 comments on commit 891f492

Please sign in to comment.