From df0af2ab2c2ce9c10e0dc620f30d2f64903e9e96 Mon Sep 17 00:00:00 2001 From: David Lyle Date: Tue, 29 Oct 2019 10:28:51 -0600 Subject: [PATCH] fixing makereport container build A recent change to debian apt repositories led to build errors for the report container. The error was around stretch release files. The container image we are based on published an update which fixes this error. This patch updates to use :latest to avoid errors when building. Signed-off-by: David Lyle --- metrics/report/report_dockerfile/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics/report/report_dockerfile/Dockerfile b/metrics/report/report_dockerfile/Dockerfile index bf1c171..ae171f0 100755 --- a/metrics/report/report_dockerfile/Dockerfile +++ b/metrics/report/report_dockerfile/Dockerfile @@ -13,7 +13,7 @@ # We would have used the 'verse' base, that already has some of the docs processing # installed, but I could not figure out how to add in the extra bits we needed to # the lite tex version is uses. -FROM rocker/tidyverse +FROM rocker/tidyverse:latest # Version of the Dockerfile LABEL DOCKERFILE_VERSION="1.0"