Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(backend): 调整mongo介质镜像打包参数 #3691 #3692

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dbm-ui/backend/dbm_init/medium/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ FROM medium-builder as mongodb-medium-builder
## 构建mongodb介质
RUN set -ex && \
cd /blueking-dbm/dbm-services/mongodb/db-tools/dbactuator && \
make build VERSION=$(/lock.sh mongodb actuator version) GITHASH=$(/lock.sh mongodb actuator commitId) -j4 && \
make build VERSION=$(/lock.sh mongodb actuator version) GITHASH=$(/lock.sh mongodb actuator commitId) BUILDSTAMP=$(/lock.sh mongodb actuator commitDate) -j4 && \
cd /blueking-dbm/dbm-services/mongodb/db-tools/dbmon && \
cat package.sh | tr -d '\r' > package.sh.tmp && mv package.sh.tmp package.sh && \
bash package.sh --version=$(/lock.sh mongodb dbmon version) --git-hash=$(/lock.sh mongodb dbmon commitId) --git-date=$(/lock.sh mongodb dbmon commitDate) && \
cd /blueking-dbm/dbm-services/mongodb/db-tools/mongo-toolkit-go && \
make build VERSION=$(/lock.sh mongodb mongo-toolkit version) GITHASH=$(/lock.sh mongodb mongo-toolkit commitId) -j4
make build VERSION=$(/lock.sh mongodb mongo-toolkit version) GITHASH=$(/lock.sh mongodb mongo-toolkit commitId) BUILDSTAMP=$(/lock.sh mongodb mongo-toolkit commitDate) -j4


FROM medium-builder as bigdata-medium-builder
Expand Down
Loading