Files
baritone/Dockerfile

18 lines
301 B
Docker
Raw Normal View History

FROM ubuntu:focal
2018-09-02 19:53:08 -07:00
ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y
2019-03-22 21:17:20 -07:00
RUN apt install \
openjdk-17-jdk \
2018-09-02 19:53:08 -07:00
--assume-yes
2018-09-30 07:58:44 -07:00
COPY . /code
2018-10-19 21:15:37 -07:00
WORKDIR /code
2021-07-06 08:26:30 -06:00
RUN ./gradlew build
2021-09-22 12:22:00 -06:00
RUN ./gradlew build -Pbaritone.forge_build -Ploom.platform=forge
2021-07-06 08:26:30 -06:00
RUN ./gradlew build -Pbaritone.fabric_build