stroke_model / Dockerfile
omaralaa2004's picture
Update Dockerfile
4f4af54 verified
raw
history blame contribute delete
187 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "120", "app:app"]