Skip to content

Commit

Permalink
fix dockerfile location
Browse files Browse the repository at this point in the history
Signed-off-by: Jeeva Kandasamy <[email protected]>
  • Loading branch information
jkandasa committed Feb 13, 2024
1 parent 6b95913 commit 1f6c7bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ if [ "$SUPPORT_MULTI_ARCH" = "true" ]; then
docker buildx build --push \
--progress=plain \
--platform "linux/amd64,linux/arm64,linux/ppc64le,linux/s390x" \
--file ./docker/Dockerfile.without_builder \
--file ./Dockerfile.without_builder \
--tag ${CONSOLE_PLUGIN_IMAGE} .

else # build platform specific image
${CONTAINER_RUNTIME} build --file ./docker/Dockerfile --tag ${CONSOLE_PLUGIN_IMAGE} .
${CONTAINER_RUNTIME} build --file ./Dockerfile --tag ${CONSOLE_PLUGIN_IMAGE} .
${CONTAINER_RUNTIME} push ${CONSOLE_PLUGIN_IMAGE}
fi

0 comments on commit 1f6c7bb

Please sign in to comment.