From 9f6c80cccbac9f68d46318674e86def79edfd02d Mon Sep 17 00:00:00 2001 From: Tarun Jain <87998741+erjain@users.noreply.github.com> Date: Tue, 15 Feb 2022 02:15:38 +0530 Subject: [PATCH] Updated Windows setup (markdown) --- Windows-setup.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Windows-setup.md b/Windows-setup.md index 8ac7d04..a0d550d 100644 --- a/Windows-setup.md +++ b/Windows-setup.md @@ -276,12 +276,14 @@ 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` +```console + 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`