From: Fotis Xenakis <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
docker: update default to ubuntu 20.04 Signed-off-by: Fotis Xenakis <[email protected]> Message-Id: <vi1pr03mb4383c522828428b8d72bcbb3a6...@vi1pr03mb4383.eurprd03.prod.outlook.com> --- diff --git a/docker/Dockerfile.builder b/docker/Dockerfile.builder --- a/docker/Dockerfile.builder +++ b/docker/Dockerfile.builder @@ -37,7 +37,7 @@ CMD /bin/bash # docker build -t osv/builder-fedora-31 -f Dockerfile.builder . # # Build the container based of specific Ubuntu version -# docker build -t osv/builder-ubuntu-19.10 -f Dockerfile.builder --build-arg DIST="ubuntu-19.10" . +# docker build -t osv/builder-ubuntu-20.04 -f Dockerfile.builder --build-arg DIST="ubuntu-20.04" . # # Build the container based of specific Fedora version and git repo owner (if forked) example: # docker build -t osv/builder-fedora-31 -f Dockerfile.builder --build-arg DIST="fedora-31" --build-arg GIT_ORG_OR_USER=a_user . diff --git a/docker/Dockerfile.builder-ubuntu-base b/docker/Dockerfile.builder-ubuntu-base --- a/docker/Dockerfile.builder-ubuntu-base +++ b/docker/Dockerfile.builder-ubuntu-base @@ -7,7 +7,7 @@ # This Docker file defines an image based on Ubuntu distribution and provides # all packages necessary to build and run kernel and applications. # -ARG DIST_VERSION=19.10 +ARG DIST_VERSION=20.04 FROM ubuntu:${DIST_VERSION} ENV DEBIAN_FRONTEND noninteractive diff --git a/docker/Dockerfile.runner-ubuntu b/docker/Dockerfile.runner-ubuntu --- a/docker/Dockerfile.runner-ubuntu +++ b/docker/Dockerfile.runner-ubuntu @@ -8,7 +8,7 @@ # This Docker file defines a container intended to run and test OSv # It comes with capstan that can pull kernel and pre-built MPM packages # -ARG DIST_VERSION=19.10 +ARG DIST_VERSION=20.04 FROM ubuntu:${DIST_VERSION} ENV DEBIAN_FRONTEND noninteractive @@ -46,7 +46,7 @@ CMD /bin/bash # docker build -t osv/runner-ubuntu -f Dockerfile.runner-ubuntu . # # Build the container based of specific Ubuntu version and git repo owner (if forked) example: -# docker build -t osv/runner-ubuntu -f Dockerfile.runner-ubuntu --build-arg DIST_VERSION=19.10 --build-arg GIT_ORG_OR_USER=a_user . +# docker build -t osv/runner-ubuntu -f Dockerfile.runner-ubuntu --build-arg DIST_VERSION=20.04 --build-arg GIT_ORG_OR_USER=a_user . # # Run the container FIRST time example: # docker run -it --privileged osv/runner-ubuntu diff --git a/docker/README.md b/docker/README.md --- a/docker/README.md +++ b/docker/README.md @@ -9,7 +9,7 @@ docker build -t osv/builder -f Dockerfile.builder . Build container image for specific version of linux distribution and git repo owner (if forker) ``` -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 . +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 . ``` Run container -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/000000000000fae84805a5a5f0e8%40google.com.
