Add makelove command
All checks were successful
release / release (push) Successful in 3m15s

This commit is contained in:
Sebastiaan de Schaetzen 2024-09-16 12:48:18 +02:00
parent 10a2ed6087
commit a9e0505ba0
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
ARG BASE_IMAGE_TAG
ARG BASE_IMAGE_TAG=ubuntu-22.04
FROM gitea/runner-images:${BASE_IMAGE_TAG}
@ -27,4 +27,6 @@ RUN wget -O sonar.zip https://binaries.sonarsource.com/Distribution/sonar-scanne
mv sonar-scanner-*/* /sonar && \
rm -r sonar-scanner-* sonar.zip
RUN pip3 install makelove
ENV PATH="$PATH:/sonar/bin"

3
test.sh Executable file
View File

@ -0,0 +1,3 @@
docker build -t runnerimage .
docker run -it --rm runnerimage
docker image rm runnerimage