From df722aa728e35ccdb3796639bf0d6e88bcb45fe6 Mon Sep 17 00:00:00 2001 From: DJB <54362817+threadingdata@users.noreply.github.com> Date: Mon, 26 Aug 2019 06:27:43 -0700 Subject: [PATCH] Found workaround for buster v bullseye error https://github.com/trestletech/plumber/issues/459 --- misc/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/Dockerfile b/misc/Dockerfile index 2db99aa..3e61129 100644 --- a/misc/Dockerfile +++ b/misc/Dockerfile @@ -1,6 +1,9 @@ FROM trestletech/plumber MAINTAINER Docker User +# Workaround to address buster vs. bullseye codebase name +RUN echo 'deb http://deb.debian.org/debian bullseye main' > /etc/apt/sources.list + RUN apt-get update -qq && apt-get install -y \ git-core \ libssl-dev \ @@ -9,7 +12,7 @@ RUN apt-get update -qq && apt-get install -y \ libxml2-dev \ libpq-dev -y -#RUN R CMD javareconf +RUN R CMD javareconf RUN R -e "install.packages('devtools')" RUN R -e 'devtools::install_github("fdrennan/plumberAPI")'