Skip to content

Commit

Permalink
Fix error - orainstRoot.sh No such file or directory
Browse files Browse the repository at this point in the history
According to #2472
Changed line in script according to comment #2472 (comment)
  • Loading branch information
DmitriyStoyanov committed Jun 5, 2024
1 parent 448fb35 commit ffe9d9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ echo "Building image '${IMAGE_NAME}' ..."

# BUILD THE IMAGE (replace all environment variables)
BUILD_START=$(date '+%s')
"${CONTAINER_RUNTIME}" build --force-rm=true --no-cache=true \
"${CONTAINER_RUNTIME}" build --ulimit nofile=65536:65536 --force-rm=true --no-cache=true \
"${BUILD_OPTS[@]}" "${PROXY_SETTINGS[@]}" --build-arg DB_EDITION="${EDITION}" \
-t "${IMAGE_NAME}" -f "${DOCKERFILE}" . || {
echo ""
Expand Down

0 comments on commit ffe9d9a

Please sign in to comment.