chatbot / Dockerfile
syedfarith's picture
Update Dockerfile
7ecb8bf verified
raw
history blame contribute delete
382 Bytes
FROM python:3.12
RUN useradd -m -u 1000 user
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
CMD ["chainlit", "run", "app/app.py", "--port", "7860", "--allow-websocket-orgin", "syedfarith-chatbot.hf.space"]
# CMD ["chainlit", "run", "--host", "0.0.0.0", "--port", "7860"]