Implement a basic generic compiler for linux

This commit is contained in:
zontreck 2024-07-07 01:24:23 -07:00
parent c83b18db64
commit 118ec59e67
6 changed files with 16 additions and 15 deletions

View file

@ -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" ]