A stab at deploying
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2023-05-03 15:00:10 -04:00
parent 32bfbd7adc
commit 51b3d2c7c6
6 changed files with 104 additions and 2 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:latest
WORKDIR /app
COPY package.json .
RUN yarn install
COPY . .
RUN yarn build
CMD ["node", "dist/lib/server/index.js"]