-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pingcap/ticdc): we build and publish cdc components from `pingca…
…p/ticdc` repo since v9.0.0 (#529) This pull request includes changes to the Dockerfile for the `ticdc` product and updates to the `packages.yaml.tmpl` file to modify the build and publish process for CDC components. The most important changes are: Dockerfile changes: * Added a new base image argument and updated the Dockerfile to use this base image for building the `ticdc` product. Build and publish process updates: * Updated the version constraint and added new steps to build and publish CDC components from the `pingcap/ticdc` repository for versions starting from `v9.0.0`. * Added detailed steps for installing the Node.js toolchain and building `dm-master`, `dm-worker`, `dmctl`, and `dm-syncer` components. * Defined new artifact configurations for `dm-master`, `dm-worker`, `dmctl`, and container images for `dm` and `tiflow-engine` since v9.0.0 --------- Signed-off-by: wuhuizuo <[email protected]>
- Loading branch information
Showing
2 changed files
with
114 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ARG BASE_IMG=ghcr.io/pingcap-qe/bases/tools-base:v1.9.2 | ||
FROM $BASE_IMG | ||
COPY cdc /cdc | ||
EXPOSE 8300 | ||
|
||
CMD ["/cdc"] |
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