From 4b9bc138d92b90adafeb977913f96e9030507278 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Mon, 16 Aug 2021 09:50:47 -0700 Subject: [PATCH] Fix docker build issue (#4816) This PR fixes docker build issue, as it looks like debian changed `stable/update` to `stable-security/update`. Signed-off-by: Yong Tang --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9c4608589..1b077dadd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM debian:stable-slim +RUN sed -i.bak s@stable/update@stable-security/update@g /etc/apt/sources.list RUN apt-get update && apt-get -uy upgrade RUN apt-get -y install ca-certificates && update-ca-certificates