ChatGPT_Playground / Dockerfile
Demosthene-OR's picture
Update Dockerfile
933a07f
Raw
History Blame Contribute Delete
291 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
HEALTHCHECK CMD curl --fail http://localhost:7860/_stcore/health || exit 1
CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=7860"]