From feb53e9e1a949a4c8f252cf700b59551aef57dcf Mon Sep 17 00:00:00 2001 From: Marc de Courville Date: Fri, 14 Jun 2019 16:17:27 +0200 Subject: [PATCH] openjdk-8-jdk is only available on stretch not buster. Adding missing dependencies. See https://github.com/nova-video-player/aos-AVP/issues/137 --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 49c06bc..2447da6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,6 +3,7 @@ MAINTAINER Courville Software ENV DEBIAN_FRONTEND noninteractive ENV USER root +RUN echo "deb http://ftp.de.debian.org/debian stretch main" >> /etc/apt/sources.list RUN dpkg --add-architecture i386 RUN apt update && \ apt install -y locales sudo wget unzip git curl build-essential openjdk-8-jdk python pkg-config meson nasm && \