demo-first-dashboard / Dockerfile
antonymilne's picture
Update Dockerfile
40369bf verified
raw
history blame contribute delete
227 Bytes
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim
WORKDIR /app
COPY requirements.txt .
RUN uv pip install --system -r requirements.txt
COPY . .
ENTRYPOINT ["gunicorn", "app:app", "--workers", "4", "--bind", "0.0.0.0:7860"]