19 lines
No EOL
402 B
Docker
19 lines
No EOL
402 B
Docker
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"] |