diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 19fcb4230..adebb0e5f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -65,6 +65,9 @@ RUN echo "vscode ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y nodejs \ && npm install -g npm@latest \ + && npm install -g @github/copilot@0.0.421 \ + && npm cache clean --force \ + && rm -rf /root/.npm \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 35373607b..ca80e23a0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -84,7 +84,9 @@ "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "ms-playwright.playwright", - "orta.vscode-jest" + "orta.vscode-jest", + "github.copilot", + "github.copilot-chat" ] } },