We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982ca3c commit f43d775Copy full SHA for f43d775
Dockerfile
@@ -1,6 +1,6 @@
1
FROM node:alpine
2
WORKDIR /app
3
-COPY package.json yarn.lock index.js ./
4
-RUN yarn --production
+COPY package.json pnpm-lock.yaml index.js ./
+RUN npm install -g pnpm && pnpm install --prod
5
ENV LINKS_CONF=/links.conf
6
-CMD yarn run start
+CMD pnpm run start
0 commit comments