From 6217c5c7de0ba068fa145f37a47537c0ade3ecc7 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Fri, 17 Jan 2025 00:15:45 +0100 Subject: [PATCH] fix: install conventional-pre-commit via pipx --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e0126b4..f5e41c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM gitea/runner-images:ubuntu-latest +FROM git.tainton.uk/public/runner-ubuntu-custom:latest LABEL maintainer="Luke Tainton " ENV PYTHONUNBUFFERED=1 -RUN python3 -m pip install --no-cache --upgrade pip && \ - python3 -m pip install --no-cache conventional-pre-commit==4.0.0 --break-system-packages +RUN pipx install conventional-pre-commit==4.0.0 # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh