1
0
mirror of https://github.com/cabaletta/baritone synced 2025-02-16 11:57:04 +00:00
baritone/Dockerfile
2022-04-04 18:53:29 -07:00

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