1
0
mirror of https://github.com/cabaletta/baritone synced 2024-12-17 20:55:09 +00:00
baritone/Dockerfile
Kyle Koivuneva 5102d9164e Update Java version used by Docker
In 6b2fd5acee the java version used to build baritone
was bumped from 17 to 21, but the Docker build was not updated accordingly.
2024-10-15 21:58:23 +00:00

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