Skip to content

Commit

Permalink
Fix: docker build checksが常に失敗するのを修正
Browse files Browse the repository at this point in the history
build時の引数RUBY_VERSIONを指定していないためエラーになっていた。
build checks時に引数を与えるようにした。

PR #759 とPR #755 の複合でエラーするようになった。
  • Loading branch information
yonta committed Dec 13, 2024
1 parent e696934 commit 308a823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli-scripts/run-all-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ message "##### Run Docker Build Checks"
if type docker > /dev/null 2>&1; then
files=$(git ls-files | grep "Dockerfile")
for file in ${files}; do
docker build --check --file "${file}" .
docker build --build-arg RUBY_VERSION="$(cat .ruby-version)" --check --file "${file}" .
done
else
warning "[SKIP] Docker Build Checks, Docker is required."
Expand Down

0 comments on commit 308a823

Please sign in to comment.