Initial commit

This commit is contained in:
2021-04-09 16:56:13 +01:00
commit fb4c1fca36
6 changed files with 419 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:14-buster-slim
ADD * /app/
WORKDIR /app
RUN npm i
USER nobody
CMD node app.js