baritone/Dockerfile

16 lines
193 B
Docker
Raw Normal View History

2019-03-23 09:47:20 +05:30
FROM debian:stretch
2018-09-03 08:23:08 +05:30
ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y
2019-03-23 09:47:20 +05:30
RUN apt install \
2018-09-03 08:23:08 +05:30
openjdk-8-jdk \
--assume-yes
2018-09-30 20:28:44 +05:30
COPY . /code
2018-10-20 09:45:37 +05:30
WORKDIR /code
2019-03-23 09:47:20 +05:30
RUN ./gradlew build