SABRe-v2 / Dockerfile
Lguyogiro's picture
remove unnecessary requirements file copying
4744903
raw
history blame contribute delete
192 Bytes
FROM python:3.9
WORKDIR /code
RUN pip install --no-cache-dir --upgrade flask
COPY . .
# Flask usually runs on 5000, but HF expects the container to listen on 7860
CMD ["python", "app.py"]