This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 02fabf3daa8 (chores) camel-test-infra: use Fedora 39 as the minimum version for custom containers 02fabf3daa8 is described below commit 02fabf3daa8ca59968bdeceaa924dcc3635e882a Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Mon Jul 22 17:18:43 2024 +0200 (chores) camel-test-infra: use Fedora 39 as the minimum version for custom containers --- .../test/infra/dispatch/router/services/DispatchRouterContainer.java | 2 +- .../test/resources/org/apache/camel/test/infra/smb/services/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test-infra/camel-test-infra-dispatch-router/src/test/java/org/apache/camel/test/infra/dispatch/router/services/DispatchRouterContainer.java b/test-infra/camel-test-infra-dispatch-router/src/test/java/org/apache/camel/test/infra/dispatch/router/services/DispatchRouterContainer.java index 99fb01a3ecf..f57690b7f46 100644 --- a/test-infra/camel-test-infra-dispatch-router/src/test/java/org/apache/camel/test/infra/dispatch/router/services/DispatchRouterContainer.java +++ b/test-infra/camel-test-infra-dispatch-router/src/test/java/org/apache/camel/test/infra/dispatch/router/services/DispatchRouterContainer.java @@ -25,7 +25,7 @@ import org.testcontainers.images.builder.ImageFromDockerfile; public class DispatchRouterContainer extends GenericContainer<DispatchRouterContainer> implements MessagingContainer { private static final int DEFAULT_AMQP_PORT = 5672; - private static final String FROM_IMAGE_NAME = "fedora:38"; + private static final String FROM_IMAGE_NAME = "fedora:39"; private static final String FROM_IMAGE_ARG = "FROMIMAGE"; public DispatchRouterContainer() { diff --git a/test-infra/camel-test-infra-smb/src/test/resources/org/apache/camel/test/infra/smb/services/Dockerfile b/test-infra/camel-test-infra-smb/src/test/resources/org/apache/camel/test/infra/smb/services/Dockerfile index 5c7a8b5222e..c302072bd34 100644 --- a/test-infra/camel-test-infra-smb/src/test/resources/org/apache/camel/test/infra/smb/services/Dockerfile +++ b/test-infra/camel-test-infra-smb/src/test/resources/org/apache/camel/test/infra/smb/services/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. # -FROM fedora:38 as samba +FROM fedora:39 as samba LABEL maintainer="orpi...@apache.org" ENV SAMBA_ROOT /opt/camel/samba EXPOSE 139 445