Spaces:
Sleeping
Sleeping
FROM python:3.9-slim | |
WORKDIR /code | |
COPY ./requirements_hf.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
COPY . /code/ | |
EXPOSE 7860 | |
CMD ["python", "app_hf.py"] |