Spaces:
Sleeping
Sleeping
File size: 384 Bytes
244a1a0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN xargs apt-get install -y <packages.txt
COPY /home/usr/lib/python3/dist-packages/fontforge.cpython-310-x86_64-linux-gnu.so /home/usr/lib/python3.10/dist-packages/
COPY . /code/
CMD ["streamlit", "app.py", "--server.port", "7860"] |