Files
aoc-2024/Dockerfile

15 lines
351 B
Docker
Raw Permalink Normal View History

2024-12-28 22:45:09 +01:00
FROM eclipse-temurin:23-jdk
2024-12-03 10:43:17 +01:00
2024-12-28 22:45:09 +01:00
RUN apt-get update && apt-get install -y curl gzip build-essential libz-dev
RUN curl -fL "https://github.com/coursier/launchers/raw/master/cs-x86_64-pc-linux.gz" | gzip -d > cs
RUN chmod +x cs
RUN cp cs /usr/local/bin
RUN ./cs setup --yes
2024-12-03 10:43:17 +01:00
COPY . /build
WORKDIR /build
2024-12-28 22:45:09 +01:00
RUN ./mill aoc.assembly
RUN ./mill aoc.nativeImage