File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99### Fixed
1010
11+ ## [ 4.12.1] - 2026-03-03
12+ ### Fixed
13+ - Fix api service dockerfile ([ #1372 ] ( https://github.com/opendevstack/ods-core/pull/1372 ) )
14+
1115## [ 4.12.0] - 2026-03-02
1216### Changed
1317- Improved automatic tests for the quickstarters ([ #1362 ] ( https://github.com/opendevstack/ods-core/pull/1362 ) )
Original file line number Diff line number Diff line change 44
55# OpenDevStack Api Service Version
66# See https://github.com/opendevstack/ods-api-service/releases
7- ODS_API_SERVICE_VERSION=0 .0.2
7+ ODS_API_SERVICE_VERSION=v0 .0.2
88
99# JVM configuration
1010JAVA_OPTS=-Xmx1g -Djavax.net.ssl.trustStore=/home/default/custom-truststore.jks -Djavax.net.ssl.trustStorePassword=changeit
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ FROM registry.access.redhat.com/ubi9/openjdk-21-runtime:latest
44# This applies for version from 2.10 and not below.
55ENV LOG4J_FORMAT_MSG_NO_LOOKUPS=true
66
7- ARG ODS_API_SERVICE_VERSION=latest
7+ ARG ODS_API_SERVICE_VERSION
88
9- RUN curl -L https://github.com/opendevstack/ods-api-service/releases/download/v $ODS_API_SERVICE_VERSION/app.jar -o app.jar
9+ RUN curl -fSL --retry 3 https://github.com/opendevstack/ods-api-service/releases/download/$ODS_API_SERVICE_VERSION/app.jar -o app.jar
1010
1111# Environment variable for certificate URLs (comma-separated) ENV CERT_URLS="" it is needed to install the certificates
1212COPY install-certs.sh /opt/install-certs.sh
You can’t perform that action at this time.
0 commit comments