We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c894de8 commit 6d7c906Copy full SHA for 6d7c906
.devcontainer/Dockerfile
@@ -0,0 +1,3 @@
1
+FROM julia:1.10
2
+
3
+RUN apt-get update && apt-get install -y git
.devcontainer/devcontainer.json
@@ -0,0 +1,15 @@
+{
+ "customizations": {
+ "vscode": {
4
+ "extensions": [
5
+ "julialang.language-julia",
6
+ "ms-azuretools.vscode-docker"
7
+ ]
8
+ }
9
+ },
10
+ "runArgs": [
11
+ "--privileged"
12
+ ],
13
+ "dockerFile": "Dockerfile",
14
+ "updateContentCommand": "julia -e 'using Pkg; Pkg.develop(path=\".\");'"
15
+}
0 commit comments