Files
rhel9-autodeploy/Dockerfile
T
ebner 66828b05ee
Build and Publish Docker Image / docker (push) Successful in 14s
add run script
2026-07-13 13:49:41 +02:00

12 lines
421 B
Docker

FROM gitea.psi.ch/images/rhel9
RUN dnf install -y git nodejs rsync \
&& dnf clean all
RUN curl -o /usr/bin/gitea-runner -L https://gitea.com/gitea/runner/releases/download/v2.0.1/gitea-runner-2.0.1-linux-amd64 \
&& chmod +x /usr/bin/gitea-runner
COPY run.sh /usr/bin/run.sh
RUN chmod +x /usr/bin/run.sh
# CMD ["/usr/bin/gitea-runner", "run", "--config", "/etc/gitea-runner/config.toml"]
CMD ["/usr/bin/run.sh"]