File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff 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 .
Original file line number Diff line number Diff line change 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
1111FROM ubuntu:${DIST_VERSION}
1212
1313ENV DEBIAN_FRONTEND noninteractive
Original file line number Diff line number Diff line change 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
1212FROM ubuntu:${DIST_VERSION}
1313
1414ENV 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
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ docker build -t osv/builder -f Dockerfile.builder .
99
1010Build 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
1515Run container
You can’t perform that action at this time.
0 commit comments