الملفات
ghaymah-exam-ayashosha-sre/q1-deploy-monitor/Dockerfile
2026-07-29 05:15:26 +03:00

7 أسطر
136 B
Docker

FROM node:16.3.0-alpine
COPY . /app
RUN mkdir -p /logs && touch /logs/logs.txt
WORKDIR /app
RUN npm install
CMD ["node", "/app/app.js"]