We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e30af23 commit 1a2e964Copy full SHA for 1a2e964
1 file changed
.github/workflows/docker-images.yml
@@ -146,6 +146,24 @@ jobs:
146
push: true
147
tags: ${{ env.FRONTEND_IMAGE_NAMES }}
148
149
+ - name: Build and push the enterprise edition frontend image
150
+ if: ${{ env.BUILD_FRONTEND == 'true' }}
151
+ uses: docker/build-push-action@v6
152
+ env:
153
+ NODE_ENV: production
154
+ with:
155
+ file: ./deploy/docker/Dockerfile
156
+ target: lowcoder-ce-frontend
157
+ build-args: |
158
+ REACT_APP_ENV=production
159
+ REACT_APP_EDITION=enterprise
160
+ REACT_APP_COMMIT_ID="dev #${{ env.SHORT_SHA }}"
161
+ platforms: |
162
+ linux/amd64
163
+ linux/arm64
164
+ push: true
165
+ tags: ${{ env.FRONTEND_IMAGE_NAMES }}
166
+
167
- name: Build and push the node service image
168
if: ${{ env.BUILD_NODESERVICE == 'true' }}
169
uses: docker/build-push-action@v6
0 commit comments