payer-ai-prototypes / Dockerfile
vin00d's picture
updates to app to display test options
d4f7ae0
Raw
History Blame Contribute Delete
447 Bytes
FROM python:3.11-slim
WORKDIR /app
ENV PYTHONUNBUFFERED=1
ENV CHAINLIT_HOST=0.0.0.0
ENV CHAINLIT_PORT=7860
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
&& rm -rf /var/lib/apt/lists/*
COPY pyproject.toml .python-version ./
RUN pip install --no-cache-dir uv && uv sync --no-dev
COPY . .
EXPOSE 7860
CMD ["uv", "run", "chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]