mirror of
https://github.com/cabaletta/baritone
synced 2024-12-12 10:19:34 +00:00
16 lines
193 B
Docker
16 lines
193 B
Docker
FROM debian:stretch
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install \
|
|
openjdk-8-jdk \
|
|
--assume-yes
|
|
|
|
COPY . /code
|
|
|
|
WORKDIR /code
|
|
|
|
RUN ./gradlew build
|