Chore: Add Dockerfile CI check for new modules (#92239)

This commit is contained in:
Todd Treece
2024-08-21 16:25:25 -04:00
committed by GitHub
parent a86ded2438
commit e4953b6ffd
3 changed files with 51 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
go run scripts/go-workspace/main.go validate-dockerfile --path "${REPO_ROOT}/go.work" --dockerfile-path "${REPO_ROOT}/Dockerfile"