lwjgl/Containerfile

16 lines
233 B
Plaintext
Raw Normal View History

FROM docker.io/alpine:edge
ARG JDK=openjdk17-jdk
ENV JDK=$JDK
2022-03-29 13:49:52 -04:00
RUN apk --no-cache add build-base ${JDK} wget bash apache-ant git
COPY . /opt/lwjgl2
WORKDIR /opt/lwjgl2
RUN ant generate-all
RUN ant compile
RUN ant compile_native