migrated actions
Some checks failed
Build
Deploy

This commit is contained in:
2023-04-02 17:41:30 +02:00
parent e1ed3d53db
commit d6e81e47f4
4 changed files with 39 additions and 18 deletions

View File

@@ -2,11 +2,8 @@ FROM node:18
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN npm run build
COPY .output .
EXPOSE 3000
CMD [ "node", ".output/server/index.mjs" ]
CMD [ "node", "server/index.mjs" ]