Skip to content

Commit

Permalink
Add VS Code devcontainer definition (JuliaLang#34957)
Browse files Browse the repository at this point in the history
* Add devcontainer and dockerfile

* Add VS Code CPP extension

* Use Julia base image for devcontainer

* Add VS Code make task

* Fix typo

* Remove .vscode/tasks.json
  • Loading branch information
davidanthoff committed Mar 7, 2020
1 parent a247038 commit 4d745aa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM julia:latest

RUN apt-get update && apt-get install -y build-essential libatomic1 python gfortran perl wget m4 cmake pkg-config git
8 changes: 8 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extensions": [
"julialang.language-julia",
"ms-vscode.cpptools"
],

"dockerFile": "Dockerfile"
}

0 comments on commit 4d745aa

Please sign in to comment.