File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed
Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ COPY . /app
44
55WORKDIR /app
66
7+ # Add Node.js to the container. If you don't want to wait for this to install every
8+ # time you rebuild your container, consider creating an image that has it preinstalled.
9+ RUN apt-get update
10+ RUN apt-get install -y build-essential nodejs nodejs-legacy
11+
712RUN ["dotnet" , "restore" ]
813
914RUN ["dotnet" , "build" ]
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ COPY . /app
44
55WORKDIR /app
66
7+ # Add Node.js to the container. If you don't want to wait for this to install every
8+ # time you rebuild your container, consider creating an image that has it preinstalled.
9+ RUN apt-get update
10+ RUN apt-get install -y build-essential nodejs nodejs-legacy
11+
712RUN ["dotnet" , "restore" ]
813
914RUN ["dotnet" , "build" ]
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ COPY . /app
44
55WORKDIR /app
66
7+ # Add Node.js to the container. If you don't want to wait for this to install every
8+ # time you rebuild your container, consider creating an image that has it preinstalled.
9+ RUN apt-get update
10+ RUN apt-get install -y build-essential nodejs nodejs-legacy
11+
712RUN ["dotnet" , "restore" ]
813
914RUN ["dotnet" , "build" ]
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ COPY . /app
44
55WORKDIR /app
66
7+ # Add Node.js to the container. If you don't want to wait for this to install every
8+ # time you rebuild your container, consider creating an image that has it preinstalled.
9+ RUN apt-get update
10+ RUN apt-get install -y build-essential nodejs nodejs-legacy
11+
712RUN ["dotnet" , "restore" ]
813
914RUN ["dotnet" , "build" ]
You can’t perform that action at this time.
0 commit comments