Add mac-check app

This commit is contained in:
Dzejkobik007
2023-01-19 23:38:38 +01:00
parent 271a17cd16
commit 1bcc8212e9
11 changed files with 33577 additions and 0 deletions

10
wap/mac-check/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:12.18.1
ENV NODE_ENV=production
COPY "src" "/app"
WORKDIR /app
RUN npm install --production
CMD [ "node", "app.js" ]