Add Dockerfile

This commit is contained in:
Daniel Kluge 2022-11-06 19:08:12 +01:00
parent d5da247a82
commit a77ebb2504
2 changed files with 8 additions and 0 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
.git
.gitignore

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:lts-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
CMD node index.mjs