Skip to content

Commit

Permalink
Merge pull request #8 from terasakisatoshi/arrange-repository
Browse files Browse the repository at this point in the history
Arrange repository
  • Loading branch information
terasakisatoshi authored Apr 17, 2022
2 parents b8d998b + cf68a6a commit 9c38da8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential \
git \
unzip \
wget \
&& \
apt-get clean && rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* # clean up

Expand Down
5 changes: 3 additions & 2 deletions templates/dot_devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"eamodio.gitlens",
"bungcip.better-toml",
"usernamehw.errorlens",
"ms-vscode.live-server"
"ms-vscode.live-server",
"congyiwu.vscode-jupytext",
]
}
}
5 changes: 3 additions & 2 deletions templates/dot_vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"ms-vscode-remote.vscode-remote-extensionpack",
"julialang.language-julia",
"bungcip.better-toml"
"bungcip.better-toml",
"congyiwu.vscode-jupytext",
]
}
}
7 changes: 3 additions & 4 deletions templates/with_jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ RUN apt-get update && \
curl \
ca-certificates \
git \
wget \
zip \
&& \
apt-get clean && rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* # clean up
Expand All @@ -38,7 +39,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \

# install NodeJS
RUN apt-get update && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs && \
apt-get clean && rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* # clean up

Expand All @@ -54,10 +55,8 @@ RUN curl -kL https://bootstrap.pypa.io/get-pip.py | python3 && \
jupyter-server-proxy \
nbconvert \
ipykernel \
isort \
black \
git+https://github.com/IllumiDesk/jupyter-pluto-proxy.git \
jupyterlab_code_formatter autopep8 black \
jupyterlab_code_formatter autopep8 isort black \
webio_jupyter_extension \
webio-jupyterlab-provider \
&& \
Expand Down

0 comments on commit 9c38da8

Please sign in to comment.