splat-explorer / Dockerfile
ArtelTaleb's picture
fix: cache-bust 03:27:52 + uv build
16f9351 verified
raw
history blame contribute delete
247 Bytes
FROM python:3.11-slim
# cache-bust: 2026-03-31T03:27:52Z
WORKDIR /app
RUN pip install uv --quiet --no-cache-dir
COPY requirements.txt .
RUN uv pip install --system --no-cache -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]