15 lines
No EOL
268 B
Docker
15 lines
No EOL
268 B
Docker
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"] |