Skip to content

Commit 1a2e964

Browse files
authored
Update docker-images.yml
Adding Enterprise Edition Docker Image
1 parent e30af23 commit 1a2e964

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/docker-images.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,24 @@ jobs:
146146
push: true
147147
tags: ${{ env.FRONTEND_IMAGE_NAMES }}
148148

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+
149167
- name: Build and push the node service image
150168
if: ${{ env.BUILD_NODESERVICE == 'true' }}
151169
uses: docker/build-push-action@v6

0 commit comments

Comments
 (0)