13 lines
No EOL
413 B
Docker
13 lines
No EOL
413 B
Docker
FROM debian:latest
|
|
|
|
ARG JENKINS_SECRET=notset
|
|
|
|
ENV DOCKER 1
|
|
RUN apt update; apt-get upgrade -y
|
|
|
|
RUN apt install -y build-essential cmake ninja-build openjdk-17-jdk nasm git curl wget openjdk-17-jre
|
|
|
|
WORKDIR /
|
|
RUN curl -sO https://ci.zontreck.com/jnlpJars/agent.jar
|
|
|
|
ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", JENKINS_SECRET, "-name", "Linux", "-workDir", "/builder" ] |