File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM mcr.microsoft.com/devcontainers/base:debian
2
+
3
+ RUN apt-get update && apt-get -y install --no-install-recommends \
4
+ build-essential cmake cmake-curses-gui doxygen git graphviz \
5
+ less libtool-bin libyajl-dev mpi-default-dev valgrind wget
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " HDF5 Developer" ,
3
+ "build" : {
4
+ "context" : " .." ,
5
+ "dockerfile" : " Dockerfile"
6
+ },
7
+ "customizations" : {
8
+ "vscode" : {
9
+ "extensions" : [
10
+ " ms-python.python" ,
11
+ " ms-toolsai.jupyter" ,
12
+ " ms-vscode.cpptools" ,
13
+ " ms-vscode.live-server" ,
14
+ " ms-vscode-remote.remote-containers" ,
15
+ " ms-azuretools.vscode-docker" ,
16
+ " h5web.vscode-h5web" ,
17
+ " davidanson.vscode-markdownlint"
18
+ ],
19
+ "settings" : {
20
+ "C_Cpp.default.cppStandard" : " c++17" ,
21
+ "C_Cpp.default.cStandard" : " c99" ,
22
+ "terminal.integrated.shell.linux" : " /bin/bash"
23
+ }
24
+ }
25
+ }
26
+ }
Original file line number Diff line number Diff line change
1
+ This file is copied into the container along with environment.yml* from the
2
+ parent folder. This file prevents the Dockerfile COPY instruction from failing
3
+ if no environment.yml is found.
You can’t perform that action at this time.
0 commit comments