From 771342e8ef3b30e3022b01f6cf1ef070113c1c43 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:42:28 +0000 Subject: [PATCH] chore(deps): update dependency https://github.com/diamondlightsource/python-copier-template.git to v5.2.0 --- .copier-answers.yml | 2 +- .github/CONTRIBUTING.md | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index c6546fb..3a08806 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 5.1.0 +_commit: 5.2.0 _src_path: https://github.com/DiamondLightSource/python-copier-template.git author_email: thomas.thomas@diamond.ac.uk author_name: Thomas Binu Thomas diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 0551899..2119cfa 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -24,4 +24,4 @@ It is recommended that developers use a [vscode devcontainer](https://code.visua This project was created using the [Diamond Light Source Copier Template](https://github.com/DiamondLightSource/python-copier-template) for Python projects. -For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.1.0/how-to.html). +For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.2.0/how-to.html). diff --git a/Dockerfile b/Dockerfile index e9e86ba..c53aff3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # The devcontainer should use the developer target and run as root with podman # or docker with user namespaces. -FROM ghcr.io/diamondlightsource/ubuntu-devcontainer:noble AS developer +FROM ghcr.io/diamondlightsource/ubuntu-devcontainer:resolute AS developer # Add any system dependencies for the developer/build environment here RUN apt-get update -y && apt-get install -y --no-install-recommends \ @@ -28,7 +28,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked --no-editable --no-dev --managed-python # The runtime stage copies the built venv into a runtime container -FROM ubuntu:noble AS runtime +FROM ubuntu:resolute AS runtime # Add apt-get system dependecies for runtime here if needed # RUN apt-get update -y && apt-get install -y --no-install-recommends \