This repository was archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
common: update Ubuntu image to 20.04
- Loading branch information
Showing
3 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,11 @@ | |
# | ||
|
||
# Pull base image | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:20.04 | ||
MAINTAINER [email protected] | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Update the Apt cache and install basic tools | ||
RUN apt-get update \ | ||
&& apt-get install -y software-properties-common \ | ||
|
@@ -26,6 +28,7 @@ RUN apt-get update \ | |
libtext-diff-perl \ | ||
pkg-config \ | ||
sudo \ | ||
tzdata \ | ||
wget \ | ||
whois \ | ||
libndctl-dev \ | ||
|
@@ -44,6 +47,6 @@ USER $USER | |
|
||
# Set required environment variables | ||
ENV OS ubuntu | ||
ENV OS_VER 18.04 | ||
ENV OS_VER 20.04 | ||
ENV PACKAGE_MANAGER deb | ||
ENV NOTTY 1 |