2018-12-25 21:57:40 +00:00
|
|
|
FROM debian:stretch-backports
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
RUN apt-get -y update \
|
|
|
|
&& apt-get -y install \
|
2019-02-03 07:37:18 +00:00
|
|
|
git vim parted pkg-config \
|
2018-12-25 21:57:40 +00:00
|
|
|
quilt realpath qemu-user-static debootstrap zerofree pxz zip dosfstools \
|
|
|
|
bsdtar libcap2-bin rsync grep udev xz-utils curl xxd file \
|
2018-12-30 10:07:22 +00:00
|
|
|
build-essential cmake python3 ant sudo openjdk-8-jdk \
|
2018-12-25 21:57:40 +00:00
|
|
|
&& apt-get -y -t stretch-backports install openjdk-11-jdk \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|