CoolFace
Apppublic

cscsj/geminiweb

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim2 3WORKDIR /app4 5# Install dependencies6COPY pyproject.toml .7RUN uv sync8 9# Copy application code10COPY main.py .11COPY assets/ assets/12 13# Expose the port the app runs on14EXPOSE 800015 16# Command to run the application17CMD ["uv", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]