Compare commits
No commits in common. "b442330a82c82802d2ddb002b7c6368a3d9738bb" and "00ba794afa174b2ef670238ec075962cca7ee47c" have entirely different histories.
b442330a82
...
00ba794afa
23
Dockerfile
23
Dockerfile
@ -18,21 +18,22 @@ LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \
|
|||||||
org.opencontainers.image.title="Gitea Actions runner images customised by Seeseemelk" \
|
org.opencontainers.image.title="Gitea Actions runner images customised by Seeseemelk" \
|
||||||
org.opencontainers.image.description="Docker images used by act_runner to run workflows."
|
org.opencontainers.image.description="Docker images used by act_runner to run workflows."
|
||||||
|
|
||||||
RUN wget -O sonar.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-6.2.1.4610.zip && \
|
RUN apt-get update && \
|
||||||
|
apt-get -y install gnupg2 openjdk-21-jre-headless
|
||||||
|
|
||||||
|
RUN wget -O sonar.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-6.1.0.4477.zip && \
|
||||||
unzip sonar.zip && \
|
unzip sonar.zip && \
|
||||||
mkdir /sonar && \
|
mkdir /sonar && \
|
||||||
mv sonar-scanner-*/* /sonar && \
|
mv sonar-scanner-*/* /sonar && \
|
||||||
rm -r sonar-scanner-* sonar.zip
|
rm -r sonar-scanner-* sonar.zip
|
||||||
ENV PATH="$PATH:/sonar/bin"
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN pip3 install makelove
|
||||||
apt-get -y install \
|
|
||||||
gnupg2 openjdk-21-jre-headless \
|
RUN apt-get -y install luarocks && \
|
||||||
luarocks \
|
|
||||||
cmake \
|
|
||||||
libsdl2-dev libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev \
|
|
||||||
golang-1.23 && \
|
|
||||||
pip3 install makelove && \
|
|
||||||
luarocks install tl
|
luarocks install tl
|
||||||
|
|
||||||
ENV PATH="/usr/lib/go-1.23/bin/:$PATH"
|
RUN apt-get -y install \
|
||||||
|
cmake \
|
||||||
|
libsdl2-dev libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev
|
||||||
|
|
||||||
|
ENV PATH="$PATH:/sonar/bin"
|
||||||
|
12
README.md
12
README.md
@ -1,12 +0,0 @@
|
|||||||
# Runner Images
|
|
||||||
This contains the docker runner image used by the Gitea Action runner.
|
|
||||||
|
|
||||||
## Updating the runner
|
|
||||||
The runner will run from a cached version of the image.
|
|
||||||
In order to use the new version, one has to obtain a shell in the runner container, and pull the image again.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
ssh pi
|
|
||||||
docker exec -it homeserver-gitea-runner-1 /bin/sh
|
|
||||||
docker pull seeseemelk/runner-images:ubuntu-latest
|
|
||||||
```
|
|
Loading…
x
Reference in New Issue
Block a user