Skip to content

Commit 98facb8

Browse files
committed
chore: Dockerfile update
1 parent be822f0 commit 98facb8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
FROM node:16
1+
FROM node:18
22

33
# Create app directory
44
WORKDIR /usr/src/app
55

66
# Install yarn
7-
RUN npm install yarn --no-package-lock
7+
RUN npm install pnpm --no-package-lock
88

99
# Copy app source
1010
# COPY package.json ./
1111
# COPY yarn.lock ./
1212
COPY . .
1313

1414
# Install dependencies
15-
RUN yarn install
15+
RUN pnpm install
1616

1717
# Bundle app source
18-
RUN yarn build
18+
RUN pnpm build
1919

2020
# Set environment variables
2121
ENV NODE_ENV=production
@@ -25,4 +25,4 @@ ENV PORT=3000
2525
EXPOSE 3000
2626

2727
# Start app
28-
CMD [ "node", "dist/server.js" ]
28+
CMD [ "node", "dist/server.js" ]

0 commit comments

Comments
 (0)