Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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-test.txt
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it make sense to rename {{cookiecutter.stack_name}}/requirements-dev.txt to requirements-test.txt as well then?


RUN pip install --no-cache-dir -r /tmp/requirements-test.txt
27 changes: 27 additions & 0 deletions {{cookiecutter.stack_name}}/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "Jupyter Cookiecutter 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"
]
}
}
}