From b0c77a3c22a4b086645b79f4e142f4360c7b1eab Mon Sep 17 00:00:00 2001 From: Michal Karm Babacek Date: Wed, 12 Apr 2023 15:28:31 +0200 Subject: [PATCH] AWT related .so libs needed in container --- integration-tests/awt/src/main/docker/Dockerfile.native | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/awt/src/main/docker/Dockerfile.native b/integration-tests/awt/src/main/docker/Dockerfile.native index 8b7e7fd728806..578f11618c120 100644 --- a/integration-tests/awt/src/main/docker/Dockerfile.native +++ b/integration-tests/awt/src/main/docker/Dockerfile.native @@ -6,6 +6,8 @@ WORKDIR /work/ RUN chown 1001 /work \ && chmod "g+rwX" /work \ && chown 1001:root /work +# Shared objects to be dynamically loaded at runtime as needed +COPY --chown=1001:root target/*.so /work/ COPY --chown=1001:root target/*-runner /work/application # Permissions fix for Windows RUN chmod "ugo+x" /work/application