Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbuechele committed Apr 3, 2024
1 parent d3d5460 commit 07beee6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:20-slim

WORKDIR /usr/src/app
COPY package.json yarn.lock ./
RUN yarn install --ignore-engines --production
COPY package.json package-lock.json ./
RUN npm install --omit=dev
COPY . .
RUN yarn build
CMD ["yarn", "start"]
RUN npm run build
CMD ["npm", "start"]

0 comments on commit 07beee6

Please sign in to comment.