Skip to content

Commit e432bef

Browse files
authored
add .devcontainer (#121)
1 parent ac7d51d commit e432bef

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM mcr.microsoft.com/devcontainers/python:3.13
2+
3+
COPY requirements-dev.txt /tmp/requirements-test.txt
4+
5+
RUN pip install --no-cache-dir -r /tmp/requirements-test.txt
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "Jupyter Cookiecutter Docker Stacks",
3+
"build": {
4+
"context": "..",
5+
"dockerfile": "Dockerfile"
6+
},
7+
8+
"features": {
9+
"ghcr.io/devcontainers/features/docker-in-docker:2": {
10+
"moby": false
11+
}
12+
},
13+
14+
"customizations": {
15+
"vscode": {
16+
"extensions": [
17+
"github.copilot-chat",
18+
"github.copilot",
19+
"github.vscode-github-actions",
20+
"github.vscode-pull-request-github",
21+
"ms-azuretools.vscode-containers",
22+
"ms-azuretools.vscode-docker",
23+
"ms-python.autopep8"
24+
]
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)