Skip to content

Commit 2da6f78

Browse files
committed
fix(dcellar-web-ui): use pnpm instead of yarn in dockerfile
1 parent 42df4da commit 2da6f78

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/dcellar-web-ui/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM node:20.20.0-bookworm-slim
22

3+
# Enable Corepack to use the packageManager specified in package.json
4+
RUN corepack enable
5+
36
WORKDIR /opt/deploy
47

58
COPY /common/deploy .
@@ -10,4 +13,4 @@ EXPOSE 3000
1013

1114
ENV NODE_ENV production
1215

13-
CMD [ "yarn", "start" ]
16+
CMD [ "pnpm", "start" ]

0 commit comments

Comments
 (0)