1
0
mirror of https://github.com/cabaletta/baritone synced 2024-12-30 11:02:19 +00:00
baritone/Dockerfile
2021-09-22 12:22:00 -06:00

18 lines
301 B
Docker

FROM ubuntu:focal
ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y
RUN apt install \
openjdk-16-jdk \
--assume-yes
COPY . /code
WORKDIR /code
RUN ./gradlew build
RUN ./gradlew build -Pbaritone.forge_build -Ploom.platform=forge
RUN ./gradlew build -Pbaritone.fabric_build