2 Commits

Author SHA1 Message Date
720f156fa3 fix(pip): correctly pass --break-system-packages
All checks were successful
Release / Create Release (push) Successful in 10s
Release / Print Release (push) Successful in 2s
2025-01-16 23:43:02 +01:00
87e6a9f467 Force pip install to override system packages
All checks were successful
Release / Create Release (push) Successful in 16s
Release / Print Release (push) Successful in 2s
2025-01-16 23:31:51 +01:00

View File

@ -4,7 +4,7 @@ LABEL maintainer="Luke Tainton <luke@tainton.uk>"
ENV PYTHONUNBUFFERED=1
RUN python3 -m pip install --no-cache --upgrade pip && \
python3 -m pip install --no-cache conventional-pre-commit==4.0.0
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