From 73dc59057ce481fc9e27a272eee0ee304e11ad3e Mon Sep 17 00:00:00 2001 From: prateekpandey14 Date: Wed, 5 May 2021 20:43:57 +0530 Subject: [PATCH] chore(build): use ubunut 18.04 as container base image According to below document, ubuntu 16.04 has reached it's EOL- https://wiki.ubuntu.com/Releases Signed-off-by: prateekpandey14 --- buildscripts/cstor-csi-driver/Dockerfile | 2 +- buildscripts/cstor-csi-driver/cstor-csi-driver.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildscripts/cstor-csi-driver/Dockerfile b/buildscripts/cstor-csi-driver/Dockerfile index 82ee71207..d63525134 100644 --- a/buildscripts/cstor-csi-driver/Dockerfile +++ b/buildscripts/cstor-csi-driver/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. -FROM ubuntu:16.04 +FROM ubuntu:18.04 RUN apt-get clean && rm -rf /var/lib/apt/lists/* RUN apt-get update; exit 0 RUN apt-get -y install rsyslog xfsprogs ca-certificates diff --git a/buildscripts/cstor-csi-driver/cstor-csi-driver.Dockerfile b/buildscripts/cstor-csi-driver/cstor-csi-driver.Dockerfile index 437d16aac..793ad502a 100644 --- a/buildscripts/cstor-csi-driver/cstor-csi-driver.Dockerfile +++ b/buildscripts/cstor-csi-driver/cstor-csi-driver.Dockerfile @@ -41,7 +41,7 @@ COPY . . RUN make buildx.csi-driver -FROM ubuntu:16.04 +FROM ubuntu:18.04 RUN apt-get clean && rm -rf /var/lib/apt/lists/* RUN apt-get update; exit 0 RUN apt-get -y install rsyslog xfsprogs ca-certificates