We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3bc19 commit c9f99c7Copy full SHA for c9f99c7
2 files changed
.devcontainer/Dockerfile
@@ -0,0 +1,4 @@
1
+FROM mcr.microsoft.com/devcontainers/python:3.10-bullseye
2
+
3
+# Remove Yarn repository to avoid GPG key expiration issue
4
+RUN rm -f /etc/apt/sources.list.d/yarn.list
.devcontainer/devcontainer.json
@@ -1,11 +1,14 @@
{
"name": "Azure Developer CLI",
- "image": "mcr.microsoft.com/devcontainers/python:3.10-bullseye",
+ "build": {
5
+ "dockerfile": "Dockerfile"
6
+ },
7
"features": {
8
// See https://containers.dev/features for list of features
9
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
10
"ghcr.io/azure/azure-dev/azd:latest": {},
- "ghcr.io/devcontainers/features/azure-cli:1": {}
11
+ "ghcr.io/devcontainers/features/azure-cli:1": {},
12
+ "ghcr.io/devcontainers/features/powershell:2.0.0": {}
13
}
14
0 commit comments