Skip to content

Commit

Permalink
Adds Copilot extensions to devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
topfunky committed May 24, 2024
1 parent d1e51aa commit 4713c3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,5 @@ RUN apt-get update \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

RUN ./setup.sh

# Switch back to dialog for any ad-hoc use of apt-get
ENV DEBIAN_FRONTEND=dialog
6 changes: 4 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
"terminal.integrated.shell.linux": "/bin/bash"
},

"extensions": []
"extensions": [
"github.copilot"
]

},


"forwardPorts": [],
"postCreateCommand": "echo 'Devcontainer setup complete.'"
"postCreateCommand": "sh setup.sh && echo 'Devcontainer setup complete.'"

}
}

0 comments on commit 4713c3e

Please sign in to comment.