diff --git a/Windows-setup.md b/Windows-setup.md index 80a1f2c..8ac7d04 100644 --- a/Windows-setup.md +++ b/Windows-setup.md @@ -276,15 +276,15 @@ It is also recommended to install the C# extension and the Docker extension for 1. Update the Dockerfile in WebSPA project(src/Web/WebSPA/Dockerfile) to insert below instructions after WORKDIR /app - RUN apt-get update - RUN apt-get -y install curl gnupg - RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - - RUN apt-get -y install nodejs - RUN npm install - RUN npm -v + `RUN apt-get update` + `RUN apt-get -y install curl gnupg` + `RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -` + `RUN apt-get -y install nodejs` + `RUN npm install` + `RUN npm -v` 2. Update the value for webspa.environment in docker-compose.override.yml as follows: - ASPNETCORE_ENVIRONMENT=Development + `ASPNETCORE_ENVIRONMENT=Development` ## Explore the code