Files
Anthias/docker/Dockerfile.dev
Viktor Petersson 0c2be6d066 We keep hitting rate limiting from Docker Hub - let's say goodbye (#2802)
* We keep hitting rate limiting from Docker Hub - let's say goodbye

* DRY things up
2026-05-01 16:07:38 +01:00

16 lines
299 B
Docker

FROM mirror.gcr.io/library/python:3.13-trixie
RUN apt-get update -y && \
pip install uv
WORKDIR /app
COPY pyproject.toml uv.lock /app/
RUN uv sync --group docker-image-builder
RUN git config --global --add safe.directory /app
ENV VIRTUAL_ENV=/app/.venv
ENV PATH="${VIRTUAL_ENV}/bin:$PATH"