baritone/Dockerfile

16 lines
193 B
Docker
Raw Permalink Normal View History

2019-03-23 04:17:20 +00:00
FROM debian:stretch
2018-09-03 02:53:08 +00:00
ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y
2019-03-23 04:17:20 +00:00
RUN apt install \
2018-09-03 02:53:08 +00:00
openjdk-8-jdk \
--assume-yes
2018-09-30 14:58:44 +00:00
COPY . /code
2018-10-20 04:15:37 +00:00
WORKDIR /code
2019-03-23 04:17:20 +00:00
RUN ./gradlew build