Files
baritone/Dockerfile
wagyourtail a49f4ee858 cleanup
2021-06-16 02:51:56 -06:00

18 lines
316 B
Docker

FROM debian:stretch
ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y
RUN apt install \
openjdk-8-jdk \
--assume-yes
COPY . /code
WORKDIR /code
RUN ./gradlew build -Ploom.forge=true
RUN ./gradlew build -Pbaritone.forge_build
RUN ./gradlew build -Pbaritone.fabric_build -Ploom.forge=true