Skip to content

Commit

Permalink
Update to latest base image
Browse files Browse the repository at this point in the history
  • Loading branch information
mershad-manesh committed Jan 9, 2025
1 parent 20244ba commit 9843579
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion opennms-container/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ endif
VERSION := $(shell ../../.circleci/scripts/pom2version.sh ../../pom.xml)
SHELL := /bin/bash -o nounset -o pipefail -o errexit
BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
BASE_IMAGE := opennms/deploy-base:ubi9-3.5.1.b280-jre-17
BASE_IMAGE := opennms/deploy-base:ubi9-3.5.2.b283-jre-17
DOCKER_CLI_EXPERIMENTAL := enabled
DOCKER_REGISTRY := docker.io
DOCKER_ORG := opennms
Expand Down
2 changes: 1 addition & 1 deletion opennms-container/core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
##
# Use Java base image and setup required RPMs as cacheable image.
##
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.1.b280-jre-17"
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.2.b283-jre-17"

FROM ${BASE_IMAGE} as core-tarball

Expand Down
2 changes: 1 addition & 1 deletion opennms-container/minion/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# To avoid issues, we rearrange the directories in pre-stage to avoid injecting these
# as additional layers into the final image.
##
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.1.b280-jre-17"
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.2.b283-jre-17"

FROM ${BASE_IMAGE} as minion-base

Expand Down
2 changes: 1 addition & 1 deletion opennms-container/sentinel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
##
# Use Java base image and setup required RPMs as cacheable image.
##
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.1.b280-jre-17"
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.2.b283-jre-17"

FROM ${BASE_IMAGE} as sentinel-tarball

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class MockCloudContainer extends GenericContainer<MockCloudContainer> {
private static final Path CLOUD_MOCK_PATH_CONTAINER = Path.of("/").resolve(CLOUD_MOCK_PATH_HOST.getFileName());
private static final String CLOUD_MOCK_MAIN = "org.opennms.plugins.cloud.ittest.MockCloudMain";
public MockCloudContainer() {
super(DockerImageName.parse("opennms/deploy-base:ubi9-3.5.1.b280-jre-17"));
super(DockerImageName.parse("opennms/deploy-base:ubi9-3.5.2.b283-jre-17"));
withCopyFileToContainer(MountableFile.forHostPath(CLOUD_MOCK_PATH_HOST), CLOUD_MOCK_PATH_CONTAINER.toString())
.withCommand("/usr/bin/java", "-cp", CLOUD_MOCK_PATH_CONTAINER.toString(), CLOUD_MOCK_MAIN)
.withExposedPorts(PORT)
Expand Down

0 comments on commit 9843579

Please sign in to comment.