Skip to content

Commit 13d2b5f

Browse files
foxengwkozaczuk
authored andcommitted
docker: update default to ubuntu 20.04
Signed-off-by: Fotis Xenakis <[email protected]> Message-Id: <VI1PR03MB4383C522828428B8D72BCBB3A6BF0@VI1PR03MB4383.eurprd03.prod.outlook.com>
1 parent 4567226 commit 13d2b5f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docker/Dockerfile.builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ CMD /bin/bash
3737
# docker build -t osv/builder-fedora-31 -f Dockerfile.builder .
3838
#
3939
# Build the container based of specific Ubuntu version
40-
# docker build -t osv/builder-ubuntu-19.10 -f Dockerfile.builder --build-arg DIST="ubuntu-19.10" .
40+
# docker build -t osv/builder-ubuntu-20.04 -f Dockerfile.builder --build-arg DIST="ubuntu-20.04" .
4141
#
4242
# Build the container based of specific Fedora version and git repo owner (if forked) example:
4343
# docker build -t osv/builder-fedora-31 -f Dockerfile.builder --build-arg DIST="fedora-31" --build-arg GIT_ORG_OR_USER=a_user .

docker/Dockerfile.builder-ubuntu-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# This Docker file defines an image based on Ubuntu distribution and provides
88
# all packages necessary to build and run kernel and applications.
99
#
10-
ARG DIST_VERSION=19.10
10+
ARG DIST_VERSION=20.04
1111
FROM ubuntu:${DIST_VERSION}
1212

1313
ENV DEBIAN_FRONTEND noninteractive

docker/Dockerfile.runner-ubuntu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This Docker file defines a container intended to run and test OSv
99
# It comes with capstan that can pull kernel and pre-built MPM packages
1010
#
11-
ARG DIST_VERSION=19.10
11+
ARG DIST_VERSION=20.04
1212
FROM ubuntu:${DIST_VERSION}
1313

1414
ENV DEBIAN_FRONTEND noninteractive
@@ -46,7 +46,7 @@ CMD /bin/bash
4646
# docker build -t osv/runner-ubuntu -f Dockerfile.runner-ubuntu .
4747
#
4848
# Build the container based of specific Ubuntu version and git repo owner (if forked) example:
49-
# docker build -t osv/runner-ubuntu -f Dockerfile.runner-ubuntu --build-arg DIST_VERSION=19.10 --build-arg GIT_ORG_OR_USER=a_user .
49+
# docker build -t osv/runner-ubuntu -f Dockerfile.runner-ubuntu --build-arg DIST_VERSION=20.04 --build-arg GIT_ORG_OR_USER=a_user .
5050
#
5151
# Run the container FIRST time example:
5252
# docker run -it --privileged osv/runner-ubuntu

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ docker build -t osv/builder -f Dockerfile.builder .
99

1010
Build container image for specific version of linux distribution and git repo owner (if forker)
1111
```
12-
docker build -t osv/builder-ubuntu-19.10 -f Dockerfile.builder --build-arg DIST="ubuntu-19.10" --build-arg GIT_ORG_OR_USER=a_user .
12+
docker build -t osv/builder-ubuntu-20.04 -f Dockerfile.builder --build-arg DIST="ubuntu-20.04" --build-arg GIT_ORG_OR_USER=a_user .
1313
```
1414

1515
Run container

0 commit comments

Comments
 (0)