We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9f4e93 commit 64f7bdbCopy full SHA for 64f7bdb
.devcontainer/Dockerfile
@@ -0,0 +1,4 @@
1
+FROM mcr.microsoft.com/devcontainers/dotnet:8.0
2
+
3
+RUN apt-get update && \
4
+ apt-get -y install npm
.devcontainer/devcontainer.json
@@ -1,7 +1,7 @@
{
"name": "dotnet8.0",
- "image": "mcr.microsoft.com/devcontainers/dotnet:8.0",
- "postCreateCommand": "dotnet tool restore",
+ "dockerFile": "Dockerfile",
+ "postCreateCommand": "dotnet tool restore && cd docs && npm install --save-dev",
5
"customizations": {
6
"vscode": {
7
"extensions": [
0 commit comments