Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions {{cookiecutter.stack_name}}/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM mcr.microsoft.com/devcontainers/python:3.13

COPY requirements-dev.txt /tmp/requirements-dev.txt

RUN pip install --no-cache-dir -r /tmp/requirements-dev.txt
28 changes: 28 additions & 0 deletions {{cookiecutter.stack_name}}/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "Jupyter Docker Stacks",
"build": {
"context": "..",
"dockerfile": "Dockerfile"
},

"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"moby": false
}
},

"customizations": {
"vscode": {
"extensions": [
"github.copilot-chat",
"github.copilot",
"github.vscode-github-actions",
"github.vscode-pull-request-github",
"ms-azuretools.vscode-containers",
"ms-azuretools.vscode-docker",
"ms-python.autopep8",
"ms-vscode.makefile-tools"
]
}
}
}