Luke Tainton 6217c5c7de
All checks were successful
Release / Create Release (push) Successful in 9s
Release / Print Release (push) Successful in 3s
fix: install conventional-pre-commit via pipx
2025-01-17 00:15:45 +01:00

13 lines
417 B
Docker

FROM git.tainton.uk/public/runner-ubuntu-custom:latest
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
ENV PYTHONUNBUFFERED=1
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
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]