Try gitea actions

This commit is contained in:
2023-09-04 15:26:26 -06:00
parent 19eb9915fa
commit 6971b08282
3 changed files with 80 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18
ADD package.json .
ADD yarn.lock .
RUN yarn
ADD . .
RUN yarn build
CMD ["node", "dist/main.js"]