Skip to content

Commit

Permalink
refactor: Replace Quarkus Native Base image with ubi-minimal (same as…
Browse files Browse the repository at this point in the history
… in `Dockerfile.native`)

Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed Jun 19, 2020
1 parent d290c13 commit 432b5d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Usage:
./scripts/extract-changelog-for-version.sh 1.3.37 5
```
### 1.0.0-SNAPSHOT
* Fix : Replace Quarkus Native Base image with ubi-minimal (same as in `Dockerfile.native`)
* Fix #187: Provided Dockerfile is always skipped in simple Dockerfile mode
* Fix #237: Remove deprecated fields and method calls
* Fix #192: Removed `@Deprecated` fields from ClusterAccess
* Fix #190: Removed `@Deprecated` fields from AssemblyConfiguration
* Fix #189: Removed `@Deprecated` fields from BuildConfiguration


### 1.0.0-alpha-4 (2020-06-08)
* Fix #173: Use OpenShift compliant git/vcs annotations
* Fix #182: Assembly is never null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private BuildConfiguration createBuildConfig(boolean prePackagePhase) {

Optional<String> fromConfigured = Optional.ofNullable(getFromAsConfigured());
if (isNative) {
buildBuilder.from(fromConfigured.orElse("registry.fedoraproject.org/fedora-minimal"))
buildBuilder.from(fromConfigured.orElse("registry.access.redhat.com/ubi8/ubi-minimal:8.1"))
.entryPoint(Arguments.builder()
.execArgument("./" + findSingleFileThatEndsWith("-runner"))
.execArgument("-Dquarkus.http.host=0.0.0.0")
Expand Down

0 comments on commit 432b5d7

Please sign in to comment.