Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ The images support OpenShift [source-to-image](https://github.com/openshift/sour
|--|--|--|
| 8.0 | UBI 8 | [SDK image](8.0/build/README.md) <br/> [Runtime image](8.0/runtime/README.md)
| 9.0 | UBI 8 | [SDK image](9.0/build/README.md) <br/> [Runtime image](9.0/runtime/README.md)

## In-development Versions

| Version | OS | Documentation
|--|--|--|
| 10.0 | UBI 9 | [SDK image](10.0/build/README.md) <br/> [ASP.NET Core image](10.0/aspnet/README.md) <br/> [Runtime image](10.0/runtime/README.md)

## EOL Versions
Expand All @@ -39,7 +34,7 @@ You can build (and test) the images by executing the `build.sh` script and pass

```
$ git clone https://github.com/redhat-developer/s2i-dotnetcore.git
$ ./build.sh --ci 8.0 9.0
$ ./build.sh --ci 8.0 9.0 10.0
```

To override the default basis of the image, you can use the `--base-os` argument. For example: `--base-os fedora` or `--base-os rhel8`.
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ VERSIONS=$(echo "$VERSIONS" | xargs)

# default to building the currently supported versions.
if [ -z "$VERSIONS" ]; then
VERSIONS="8.0 9.0"
VERSIONS="8.0 9.0 10.0"
fi

# Use podman instead of docker when available.
Expand Down