eShopOnContainers/docker-compose.ci.build.yml
Bill Wagner 9271bb916b Update the CI Build docker file to build the SPA alient bits
While at it, update the sh script too.
2017-05-06 17:04:24 -04:00

11 lines
389 B
YAML

version: '2'
services:
ci-build:
image: microsoft/aspnetcore-build:1.0-1.1
volumes:
- .:/src
working_dir: /src
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"