This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/wap/mac-check/Dockerfile
2023-01-19 23:38:38 +01:00

10 lines
130 B
Docker

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