Added docker build file

This commit is contained in:
2023-04-06 21:50:17 +02:00
parent b16bd9c4b8
commit 931212d275

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:19.8.1-alpine
COPY . /app
WORKDIR /app
RUN npm install
CMD ["node", "index.js"]