Skip to content

Commit 9d209b1

Browse files
committed
chore: update Dockerfile to use PNPM for dependency management
- Added PNPM installation to the Dockerfile for improved package management. - Updated the COPY commands to include necessary configuration files for PNPM. - Replaced Bun commands with PNPM commands for installing dependencies and generating Prisma client. - Set the working directory to /usr/src/app/apps/api before starting the application.
1 parent d4f0187 commit 9d209b1

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

apps/api/Dockerfile

+9-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@ RUN curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n
88
RUN bash n $NODE_VERSION
99
RUN rm n
1010
RUN npm install -g n
11+
RUN npm install -g pnpm
1112

12-
COPY apps/api .
13+
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml turbo.json ./
14+
COPY apps/api ./apps/api
15+
COPY packages ./packages
1316

14-
RUN bun install
15-
RUN bunx prisma generate
17+
RUN pnpm install
18+
RUN pnpm generate
1619

1720
EXPOSE 9000
1821

19-
ENTRYPOINT [ "bun", "start" ]
22+
WORKDIR /usr/src/app/apps/api
23+
24+
ENTRYPOINT [ "pnpm", "start" ]

0 commit comments

Comments
 (0)