Luke Tainton 87e6a9f467
All checks were successful
Release / Create Release (push) Successful in 16s
Release / Print Release (push) Successful in 2s
Force pip install to override system packages
2025-01-16 23:31:51 +01:00

14 lines
527 B
Docker

FROM gitea/runner-images:ubuntu-latest
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
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
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]