File tree Expand file tree Collapse file tree
{{cookiecutter.stack_name}}/.devcontainer Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments