fix: missing dockerfile path
This commit is contained in:
parent
80be42f615
commit
9840823633
1 changed files with 3 additions and 1 deletions
|
@ -26,7 +26,9 @@ cat <<EOF > "$DOCKER_CONFIG/config.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
DIR="$(dirname "$INPUT_DOCKERFILE")"
|
||||||
buildctl-daemonless.sh build --frontend dockerfile.v0 "$@" \
|
buildctl-daemonless.sh build --frontend dockerfile.v0 "$@" \
|
||||||
-o "type=image,name=$IMAGEAPP,push=true" \
|
-o "type=image,name=$IMAGEAPP,push=true" \
|
||||||
--opt filename="$INPUT_DOCKERFILE" \
|
--opt filename="$INPUT_DOCKERFILE" \
|
||||||
--local context="$(dirname "$INPUT_DOCKERFILE")"
|
--local context="$DIR" --local dockerfile="$DIR"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue