mirror of
https://github.com/barkeser2002/baritone.git
synced 2026-09-25 02:20:04 +03:00
16 lines
192 B
Docker
16 lines
192 B
Docker
FROM ubuntu:focal
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install \
|
|
openjdk-17-jdk \
|
|
--assume-yes
|
|
|
|
COPY . /code
|
|
|
|
WORKDIR /code
|
|
|
|
RUN ./gradlew build
|