From 720f156fa394e11b7df6ec92816889bd4288696e Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Thu, 16 Jan 2025 23:43:02 +0100 Subject: [PATCH] fix(pip): correctly pass --break-system-packages --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01673b8..e0126b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM gitea/runner-images:ubuntu-latest LABEL maintainer="Luke Tainton " ENV PYTHONUNBUFFERED=1 -RUN python3 -m pip install --break-system-packages --no-cache --upgrade pip && \ - python3 -m pip install --break-system-packages --no-cache conventional-pre-commit==4.0.0 +RUN python3 -m pip install --no-cache --upgrade pip && \ + python3 -m pip install --no-cache conventional-pre-commit==4.0.0 --break-system-packages # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh