dockerization

This commit is contained in:
Stanislaw
2022-06-26 19:40:23 +02:00
parent 847a357a61
commit 444605ecbe
4 changed files with 75 additions and 31 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
# syntax=docker/dockerfile:1
FROM node:16.10.0
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["node", "index.js"]