الملفات
ghaymah-exam-sre-abdelrahman/q1-deploy-monitor/Dockerfile

12 أسطر
138 B
Docker

FROM python:3.10-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn
COPY app.py .
EXPOSE 8000
CMD ["python", "app.py"]