Skip to content

Commit f43d775

Browse files
committed
Fix Dockerfile
1 parent 982ca3c commit f43d775

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:alpine
22
WORKDIR /app
3-
COPY package.json yarn.lock index.js ./
4-
RUN yarn --production
3+
COPY package.json pnpm-lock.yaml index.js ./
4+
RUN npm install -g pnpm && pnpm install --prod
55
ENV LINKS_CONF=/links.conf
6-
CMD yarn run start
6+
CMD pnpm run start

0 commit comments

Comments
 (0)