This commit is contained in:
dada513 2022-06-07 12:09:24 +02:00
parent 37adfacb4f
commit de2ff62cd5
No known key found for this signature in database
GPG key ID: 403448C14FA4B33E
3 changed files with 6 additions and 8 deletions

View file

@ -1,7 +1,5 @@
FROM node:17-alpine
WORKDIR /app
COPY package.json yarn.lock .
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
CMD [ "node", "dist/index.js" ]
RUN yarn install --frozen-lockfile
CMD [ "yarn", "start" ]