This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Update the CI Build docker file to build the SPA alient bits
While at it, update the sh script too.
pull/190/head
Bill Wagner
7 years ago
parent
c79336cda2
commit
47978017aa
2 changed files
with
7 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
cli-mac/build-bits.sh
+1
-1
docker-compose.ci.build.yml
+ 6
- 0
cli-mac/build-bits.sh
View File
@ -10,6 +10,12 @@ projectList=(
"../src/Web/WebStatus"
)
pushd
$(
pwd
)
/../src/Web/WebSPA
npm install
npm rebuild node-sass
popd
for
project in
"
${
projectList
[@]
}
"
do
echo
-e
"
\e[33mWorking on
$(
pwd
)
/
$project
"
+ 1
- 1
docker-compose.ci.build.yml
View File
@ -6,5 +6,5 @@ services:
volumes:
-
.:/src
working_dir
:
/src
command
:
/bin/bash -c "dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"
command
:
/bin/bash -c "
pushd ./src/Web/WebSPA && npm install && npm rebuild node-sass && popd &&
dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"
Write
Preview
Loading…
Cancel
Save