Skip to content

Commit

Permalink
fix(be): using npm when install pnpm on build image (#2353)
Browse files Browse the repository at this point in the history
* fix(be): using npm when install pnpm on build image

* chore(be): add todo
  • Loading branch information
jspark2000 authored Feb 5, 2025
1 parent fd1c99b commit 4020234
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ ARG target
COPY . /build
WORKDIR /build

RUN corepack enable
# https://github.com/nodejs/corepack/issues/612 해결되면 다시 corepack 사용
# RUN corepack enable
RUN npm install -g pnpm
RUN pnpm --filter="@codedang/backend" deploy out

WORKDIR /build/out
Expand Down

0 comments on commit 4020234

Please sign in to comment.