【发布时间】:2021-02-19 05:27:24
【问题描述】:
docker build \
--tag gcr.io/fuzzbench/runners/afl/libpng-1.2.56-intermediate \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--cache-from gcr.io/fuzzbench/runners/afl/libpng-1.2.56-intermediate \
--file fuzzers/afl/runner.Dockerfile \
fuzzers/afl
我想将此移植到 Singularity 构建命令。 (Singularity 不支持 tag/build-arg/etc.) 同样在一个单独的问题上,在我的 Dockerfiles 我有 ARG,spython 说 WARNING ARG is not supported for Singularity, and must be defined with a default to be parse. ,关于如何从 Docker 移植到 Singularity。
【问题讨论】:
标签: docker dockerfile containers singularity-container