mirror of
https://github.com/cabaletta/baritone
synced 2024-12-17 20:55:09 +00:00
5102d9164e
In 6b2fd5acee
the java version used to build baritone
was bumped from 17 to 21, but the Docker build was not updated accordingly.
17 lines
201 B
Docker
17 lines
201 B
Docker
FROM ubuntu:focal
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install \
|
|
openjdk-21-jdk \
|
|
git \
|
|
--assume-yes
|
|
|
|
COPY . /code
|
|
|
|
WORKDIR /code
|
|
|
|
RUN ./gradlew build
|