43c710ec39
* Move java lib install to /usr/local/frc/java * Build and install both debug and normal OpenCV libraries * Install OpenCV cmake files * Build OpenCV Java with version 8 target * Build static OpenCV for static allwpilib binaries * Move netconsoleTee install to /usr/local/frc/bin * Move multiCameraServer default app install to /usr/local/frc/bin * Install more FRC binaries * Fix /home/pi/zips/java-multiCameraServer.zip owner to pi:pi * Remove azure 60 minute timeout * Add openjdk-8-jdk to Azure docker image (this is needed for cmake to find javah as only cmake 3.9 is available)
13 lines
456 B
Docker
13 lines
456 B
Docker
FROM debian:stretch-backports
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get -y update \
|
|
&& apt-get -y install \
|
|
git vim parted \
|
|
quilt realpath qemu-user-static debootstrap zerofree pxz zip dosfstools \
|
|
bsdtar libcap2-bin rsync grep udev xz-utils curl xxd file \
|
|
build-essential cmake python3 ant sudo openjdk-8-jdk \
|
|
&& apt-get -y -t stretch-backports install openjdk-11-jdk \
|
|
&& rm -rf /var/lib/apt/lists/*
|