splat-explorer / Dockerfile
artel3D's picture
fix: move cache-bust before COPY requirements to force pip reinstall
0176442
Raw
History Blame Contribute Delete
247 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install uv --quiet --no-cache-dir
# cache-bust: 2026-05-13T01:30:00Z
COPY requirements.txt .
RUN uv pip install --system --no-cache -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]