CoolFace
Apppublic

CodeHima/TOSRoberta

sourceHugging Facemitupdated 2y agoView on Hugging Face
1likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.92 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9# Download the spaCy model10RUN python -m spacy download en_core_web_sm11 12COPY . /code13 14EXPOSE 786015 16CMD ["streamlit", "run", "app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]