docs: MFSL 数据库架构升级设计——双库 + 化合物级标签 + InChIKey 补全 #40
This file contains hidden or 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
| name: Docker Build | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-xcms-worker: | |
| name: Build xcms-worker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build xcms-worker (no cache) | |
| run: | | |
| docker build --no-cache \ | |
| -t metaboflow/xcms-worker:ci \ | |
| packages/engines/xcms-worker/ | |
| build-stats-worker: | |
| name: Build stats-worker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build stats-worker (no cache) | |
| run: | | |
| docker build --no-cache \ | |
| -t metaboflow/stats-worker:ci \ | |
| packages/engines/stats-worker/ |