We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9a0d0c commit e38d02cCopy full SHA for e38d02c
2 files changed
.devcontainer/Dockerfile
@@ -0,0 +1,6 @@
1
+FROM mcr.microsoft.com/devcontainers/python:1-3.10-bookworm
2
+
3
+RUN rm -f /etc/apt/sources.list.d/yarn.list \
4
+ /etc/apt/sources.list.d/yarn.sources \
5
+ /usr/share/keyrings/yarnkey.gpg \
6
+ /etc/apt/keyrings/yarn-archive-keyring.gpg
.devcontainer/devcontainer.json
@@ -1,8 +1,10 @@
{
"name": "Python 3",
- "image": "mcr.microsoft.com/devcontainers/python:1-3.10-bookworm",
+ "build": {
+ "dockerfile": "Dockerfile"
+ },
"features": {
- "ghcr.io/devcontainers/features/docker-in-docker:2.12.0": {}
7
+ "ghcr.io/devcontainers/features/docker-in-docker:2.16.1": {}
8
},
9
"forwardPorts": [1433],
10
"postStartCommand": "/bin/bash ./.devcontainer/setup_odbc.sh & /bin/bash ./.devcontainer/setup_env.sh",
0 commit comments