Add dockerfile and build

This commit is contained in:
Mitchell Scott
2023-04-13 11:43:52 -06:00
parent 249cbb93e6
commit e1083c83ae
5 changed files with 75 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM node:18-alpine
COPY . .
RUN npm install
CMD ["node", "index.js"]