CoolFace
Apppublic

ffmex/AI-NLP-Chatbot

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.92 3RUN useradd -m -u 1000 user4USER user5ENV PATH="/home/user/.local/bin:$PATH"6 7WORKDIR /app8 9COPY --chown=user ./requirements.txt requirements.txt10RUN pip install --no-cache-dir --upgrade -r requirements.txt11 12COPY --chown=user . /app13 14# Start the Streamlit app on port 7860, the default port expected by Spaces15CMD ["streamlit", "run", "app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]16