We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90c986 commit 9fe3cb0Copy full SHA for 9fe3cb0
docker/mongodb-agent/Dockerfile.atomic
@@ -20,8 +20,11 @@ RUN case ${TARGETPLATFORM} in \
20
&& mkdir -p /tools \
21
&& curl -o /tools/mongodb_tools.tgz "${mongodb_tools_url}/${MONGODB_TOOLS_VERSION}"
22
23
-RUN tar xfz /tools/mongodb_tools.tgz --directory /tools \
24
- && rm /tools/mongodb_tools.tgz
+RUN tar xfz /tools/mongodb_tools.tgz \
+ && mv mongodb-database-tools-*/bin/* /tools \
25
+ && chmod +x /tools/* \
26
+ && rm /tools/mongodb_tools.tgz \
27
+ && rm -r mongodb-database-tools-*
28
29
FROM --platform=${BUILDPLATFORM} registry.access.redhat.com/ubi9/ubi-minimal AS agent_downloader
30
0 commit comments