Skip to content

Commit

Permalink
chore(build): use ubunut 18.04 as container base image
Browse files Browse the repository at this point in the history
According to below document, ubuntu 16.04 has reached
it's EOL- https://wiki.ubuntu.com/Releases

Signed-off-by: prateekpandey14 <[email protected]>
  • Loading branch information
prateekpandey14 authored and kmova committed May 6, 2021
1 parent 027166f commit 73dc590
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildscripts/cstor-csi-driver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/cstor-csi-driver/cstor-csi-driver.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 73dc590

Please sign in to comment.