Implement a basic generic compiler for linux
This commit is contained in:
parent
c83b18db64
commit
118ec59e67
6 changed files with 16 additions and 15 deletions
|
@ -0,0 +1,13 @@
|
|||
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" ]
|
Loading…
Add table
Add a link
Reference in a new issue