Skip to content
8 changes: 6 additions & 2 deletions src/fetch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ ENV UV_LINK_MODE=copy

# Install the project's dependencies using the lockfile and settings
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
--mount=type=bind,source=uv.lock,target=uv.lock,Z \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml,Z \
uv sync --frozen --no-install-project --no-dev --no-editable

# Then, add the rest of the project source code and install it
Expand All @@ -27,6 +27,10 @@ FROM python:3.12-slim-bookworm
WORKDIR /app

COPY --from=uv /root/.local /root/.local

RUN if ! id -u app >/dev/null 2>&1; then \
useradd -rUM -s /usr/sbin/nologin app; \
fi
COPY --from=uv --chown=app:app /app/.venv /app/.venv

# Place executables in the environment at the front of the path
Expand Down
8 changes: 6 additions & 2 deletions src/git/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ ENV UV_LINK_MODE=copy

# Install the project's dependencies using the lockfile and settings
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
--mount=type=bind,source=uv.lock,target=uv.lock,Z \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml,Z \
uv sync --frozen --no-install-project --no-dev --no-editable

# Then, add the rest of the project source code and install it
Expand All @@ -29,6 +29,10 @@ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
WORKDIR /app

COPY --from=uv /root/.local /root/.local

RUN if ! id -u app >/dev/null 2>&1; then \
useradd -rUM -s /usr/sbin/nologin app; \
fi
COPY --from=uv --chown=app:app /app/.venv /app/.venv

# Place executables in the environment at the front of the path
Expand Down
8 changes: 6 additions & 2 deletions src/time/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ ENV UV_LINK_MODE=copy

# Install the project's dependencies using the lockfile and settings
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
--mount=type=bind,source=uv.lock,target=uv.lock,Z \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml,Z \
uv sync --frozen --no-install-project --no-dev --no-editable

# Then, add the rest of the project source code and install it
Expand All @@ -27,6 +27,10 @@ FROM python:3.12-slim-bookworm
WORKDIR /app

COPY --from=uv /root/.local /root/.local

RUN if ! id -u app >/dev/null 2>&1; then \
useradd -rUM -s /usr/sbin/nologin app; \
fi
COPY --from=uv --chown=app:app /app/.venv /app/.venv

# Place executables in the environment at the front of the path
Expand Down