baseerah-api / Dockerfile
Reema Alharbi
fix dockerfile name
22fd0c5
raw
history blame contribute delete
128 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]