Files
baritone/Dockerfile

18 lines
316 B
Docker
Raw Normal View History

2019-03-22 21:17:20 -07:00
FROM debian:stretch
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 \
2018-09-02 19:53:08 -07:00
openjdk-8-jdk \
--assume-yes
2018-09-30 07:58:44 -07:00
COPY . /code
2018-10-19 21:15:37 -07:00
WORKDIR /code
2021-06-16 02:51:56 -06:00
RUN ./gradlew build -Ploom.forge=true
2020-03-25 21:19:15 -07:00
RUN ./gradlew build -Pbaritone.forge_build
2021-06-16 02:51:56 -06:00
RUN ./gradlew build -Pbaritone.fabric_build -Ploom.forge=true