We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de0c38 commit fc2e4aaCopy full SHA for fc2e4aa
.devcontainer.json
@@ -1,14 +1,19 @@
1
{
2
- "build": { "dockerfile": "Dockerfile" },
3
-
4
- "customizations": {
5
- "vscode": {
6
- "extensions": [
7
- "quarto.quarto",
8
- "ms-python.python"
9
- ]
10
- }
11
- },
12
13
- "forwardPorts": [8888]
+ "image": "mcr.microsoft.com/devcontainers/python:3",
+ "features": {
+ "ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": {
+ "version": "prerelease"
+ }
+ },
+ "forwardPorts": [
+ 8888
+ ],
+ "portsAttributes": {
+ "8888": {
+ "label": "Jupyter"
14
15
16
+ "onCreateCommand": {
17
+ "prep-python": "python3 -m pip install --upgrade setuptools jupyterlab ipython jupyterlab-quarto -e '.[dev]'"
18
}
19
+}
Dockerfile
0 commit comments