baritone/Dockerfile

25 lines
673 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
2019-03-23 04:17:20 +00:00
RUN echo 'deb http://deb.debian.org/debian stretch-backports main' > /etc/apt/sources.list.d/stretch-backports.list
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
2019-03-23 04:17:20 +00:00
RUN apt install -qq --assume-yes mesa-utils libgl1-mesa-glx libxcursor1 libxrandr2 libxxf86vm1 x11-xserver-utils xfonts-base xserver-common
2018-09-03 02:53:08 +00:00
2018-09-30 14:58:44 +00:00
COPY . /code
2018-10-20 04:15:37 +00:00
WORKDIR /code
# this .deb is specially patched to support lwjgl
2018-09-26 17:18:08 +00:00
# source: https://github.com/tectonicus/tectonicus/issues/60#issuecomment-154239173
2018-10-20 04:15:37 +00:00
RUN dpkg -i scripts/xvfb_1.16.4-1_amd64.deb
2018-09-03 02:53:08 +00:00
2019-03-23 04:17:20 +00:00
RUN ./gradlew build
2020-03-26 04:19:15 +00:00
RUN ./gradlew build -Pbaritone.forge_build