From 1ef5ead38104fbd52245c1e60a0ccfc12c585234 Mon Sep 17 00:00:00 2001 From: ange Date: Tue, 21 Oct 2025 19:15:45 +0000 Subject: [PATCH] fix: --frontend mandatory if --opt --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 163c56e..8e7767e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -26,6 +26,7 @@ cat < "$DOCKER_CONFIG/config.json" } } EOF -buildctl build "$@" -o "type=image,name=$IMAGEAPP,push=true" \ +buildctl build --frontend dockerfile.v0 "$@" \ + -o "type=image,name=$IMAGEAPP,push=true" \ --opt filename="$INPUT_DOCKERFILE" \ --local context="$(dirname "$INPUT_DOCKERFILE")"