Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Jan 4, 2024
1 parent 99de279 commit 05a7e11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine as builer
FROM node:20-alpine as builder
WORKDIR /app
COPY package.json yarn.lock .yarnrc.yml ./
COPY .yarn ./.yarn
Expand All @@ -12,6 +12,6 @@ COPY package.json yarn.lock .yarnrc.yml ./
COPY .yarn ./.yarn
ENV NODE_ENV=production
RUN yarn --immutable
COPY --from=builer /app/dist ./dist
COPY --from=builder /app/dist ./dist
RUN npm i --global pm2
CMD ["pm2-runtime", "dist/index.js"]

0 comments on commit 05a7e11

Please sign in to comment.