openai_updates / Dockerfile
Invicto69's picture
chore: Initial commit
b8f45a1 verified
raw
history blame contribute delete
213 Bytes
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir uv
COPY pyproject.toml .
RUN uv sync
COPY . .
EXPOSE 8505
CMD ["uv", "run", "streamlit", "run", "app.py", "--server.port", "8505"]