smart_table_parsing / Dockerfile
Scoooooott's picture
Update service port to 7860 for Hugging Face Spaces
f22e2cf
raw
history blame contribute delete
190 Bytes
FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]