diff --git a/README.md b/README.md
index c81686b4..495666ce 100644
--- a/README.md
+++ b/README.md
@@ -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)
[Runtime image](8.0/runtime/README.md)
| 9.0 | UBI 8 | [SDK image](9.0/build/README.md)
[Runtime image](9.0/runtime/README.md)
-
-## In-development Versions
-
-| Version | OS | Documentation
-|--|--|--|
| 10.0 | UBI 9 | [SDK image](10.0/build/README.md)
[ASP.NET Core image](10.0/aspnet/README.md)
[Runtime image](10.0/runtime/README.md)
## EOL Versions
@@ -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`.
diff --git a/build.sh b/build.sh
index 08cd65a2..9f643cc5 100755
--- a/build.sh
+++ b/build.sh
@@ -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.