我正在尝试将 xargs 安装在运行 openjdk:17-oracle 的容器中,但我无法确定此映像中存在什么包管理器。
FROM openjdk:17-oracle
RUN apt-get install findutils
抛出错误:
=> ERROR [stage-1 4/4] RUN apt-get install findutils 0.5s
------
> [stage-1 4/4] RUN apt-get install findutils:
#13 0.395 /bin/sh: apt-get: command not found
-
yum install findutils
和其他几个一样。
我需要 xargs,因为 gradle runner 使用它来为我的 java 进程构建“执行”命令。