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.
2 parents d5b8e97 + def2108 commit 18c7d0aCopy full SHA for 18c7d0a
.devcontainer.json
@@ -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
@@ -0,0 +1,8 @@
+FROM ghcr.io/quarto-dev/quarto:1.4.330
+RUN apt-get update && apt-get install -y python3 python3-pip git
+RUN pip3 install --upgrade pip
+RUN pip3 install --upgrade setuptools jupyterlab ipython jupyterlab-quarto
+COPY ./ /quartodoc
+WORKDIR /quartodoc
+RUN pip3 install -e ".[dev]"
0 commit comments