1
0
mirror of https://github.com/cabaletta/baritone synced 2025-03-07 13:28:06 +00:00
baritone/Dockerfile
2021-01-29 21:14:10 -08:00

18 lines
280 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
RUN ./gradlew build -Pbaritone.forge_build
RUN ./gradlew build -Pbaritone.fabric_build