forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ee Dockerhub build (metabase#15449)
* Fix EE Dockerhub for once and for all * Try to overload the ARG attribute * Kick the CI
- Loading branch information
1 parent
b78dced
commit 959077f
Showing
2 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
# for posterity | ||
# SOURCE_BRANCH: the name of the branch or the tag that is currently being tested. | ||
# SOURCE_COMMIT: the SHA1 hash of the commit being tested. | ||
# COMMIT_MSG: the message from the commit being tested and built. | ||
# DOCKER_REPO: the name of the Docker repository being built. | ||
# DOCKERFILE_PATH: the dockerfile currently being built. | ||
# DOCKER_TAG: the Docker repository tag being built. | ||
# IMAGE_NAME: the name and tag of the Docker repository being built. (This variable is a combination of DOCKER_REPO:DOCKER_TAG.) | ||
|
||
docker build -t $IMAGE_NAME --build-arg MB_EDITION=$MB_EDITION . |