Move containers to a dedicated org path

This commit is contained in:
zontreck 2025-03-09 18:07:56 -07:00
parent fe8f7d2a11
commit da7e2210b7
21 changed files with 144 additions and 108 deletions

15
DIND/Agent/Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM git.zontreck.com/packages/dind:latest
ENV DOCKER_AGENT_SECRET NAN
ENV DOCKER_USER NAN
ENV DOCKER_PASSWORD NAN
ADD entrypoint.sh /
RUN chmod +x /entrypoint.sh
RUN apt-get install -y openjdk-17-jre
RUN mkdir /builder
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]