Add DIND Image

This commit is contained in:
zontreck 2024-11-07 15:12:31 -07:00
parent a5694c547d
commit 98cc6cf4dc
6 changed files with 51 additions and 3 deletions

19
DINDAgent/Dockerfile Normal file
View file

@ -0,0 +1,19 @@
FROM git.zontreck.com/ariascreations/buildenvironments:debianbuild
ENV DOCKER_AGENT_SECRET NAN
ENV DOCKER_USER NAN
ENV DOCKER_PASSWORD NAN
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y openjdk-17-jdk docker-compose curl
ADD entrypoint.sh /
RUN chmod +x /entrypoint.sh
WORKDIR /
RUN curl -sO https://ci.zontreck.com/jnlpJars/agent.jar
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]