add dockerfile

This commit is contained in:
Stanislaw
2022-06-15 22:33:33 +02:00
parent 089e13b9ff
commit 9364c1767a
2 changed files with 8 additions and 0 deletions

6
Dockerfile Normal file
View File

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