This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -29,12 +29,19 @@ builddeploy_steps: &builddeploy_steps
29
29
- run : *install_dependency
30
30
- run : *install_deploysuite
31
31
- restore_cache : *restore_cache_settings_for_build
32
- - run : ./build.sh ${APPNAME}
32
+ - run :
33
+ name : Running MasterScript.
34
+ command : |
35
+ ./awsconfiguration.sh $DEPLOY_ENV
36
+ source awsenvconf
37
+ ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar
38
+ ./build.sh ${APPNAME}
39
+ rm -f buildenvvar
33
40
- save_cache : *save_cache_settings
34
41
- deploy :
35
42
name : Running MasterScript.
36
43
command : |
37
- ./awsconfiguration.sh $DEPLOY_ENV
44
+ # ./awsconfiguration.sh $DEPLOY_ENV
38
45
source awsenvconf
39
46
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
40
47
source buildenvvar
Original file line number Diff line number Diff line change @@ -9,5 +9,6 @@ WORKDIR /ubahn_app
9
9
10
10
# Install the dependencies from package.json
11
11
RUN npm install
12
- RUN npm run install-client
12
+ # RUN npm run install-client
13
+ RUN ["/bin/bash" , "-c" , "source buildenvvar ;npm run install-client" ]
13
14
CMD npm start
You can’t perform that action at this time.
0 commit comments