Skip to content

Commit 18c7d0a

Browse files
authored
Merge pull request #252 from machow/codespaces
Add artifacts for Codespaces
2 parents d5b8e97 + def2108 commit 18c7d0a

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.devcontainer.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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]
14+
}

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM ghcr.io/quarto-dev/quarto:1.4.330
2+
3+
RUN apt-get update && apt-get install -y python3 python3-pip git
4+
RUN pip3 install --upgrade pip
5+
RUN pip3 install --upgrade setuptools jupyterlab ipython jupyterlab-quarto
6+
COPY ./ /quartodoc
7+
WORKDIR /quartodoc
8+
RUN pip3 install -e ".[dev]"

0 commit comments

Comments
 (0)