-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1353 from entando/ENG-3902-release-6.5.1
ENG-3902 release 6.5.1 CMS fix
- Loading branch information
Showing
2 changed files
with
26 additions
and
4 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
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,22 @@ | ||
# PREPARE | ||
set -e | ||
export USE_MOCKS=false; | ||
export CI=false; | ||
export KEYCLOAK_ENABLED=true | ||
export COMPONENT_REPOSITORY_UI_ENABLED=true; | ||
export LEGACY_ADMINCONSOLE_INTEGRATION_ENABLED="false" | ||
export PUBLIC_URL="/app-builder" | ||
export DOMAIN="/entando-de-app" | ||
VER="6.3.93-hotfix.2" | ||
|
||
# BUILD PACKAGE | ||
npm ci | ||
npm rebuild node-sass | ||
# This is needed only if you need the CMS package from a local npm registry | ||
npm set registry http://localhost:4873 | ||
npm run app-install -- --packageVersion 0.2.252-hotfix.2 cms | ||
npm run build --production | ||
|
||
# BUILD AND PUSH IMAGE | ||
docker build --platform linux/amd64 -t entando/app-builder:$VER --build-arg VERSION="$VER" . # <= don't miss the point | ||
docker push entando/app-builder:$VER |