Skip to content
Snippets Groups Projects
Commit 54b7f1bd authored by Emmanuel Bruno's avatar Emmanuel Bruno
Browse files

adds openconnect client.

parent 86faa4db
Branches
No related tags found
No related merge requests found
bash bash
curl curl
openconnect
graphviz graphviz
grep grep
host host
......
vscjava.vscode-java-pack eamodio.gitlens
redhat.vscode-xml executablebookproject.myst-highlight
vscode-icons-team.vscode-icons
SonarSource.sonarlint-vscode
GabrielBB.vscode-lombok GabrielBB.vscode-lombok
james-yu.latex-workshop james-yu.latex-workshop
jebbs.plantuml jebbs.plantuml
eamodio.gitlens
ms-python.python ms-python.python
redhat.vscode-xml
SonarSource.sonarlint-vscode
toolsai.jupyter
vscjava.vscode-java-pack
vscode-icons-team.vscode-icons
\ No newline at end of file
black
iplantuml
isort
jinja-yaml-magic jinja-yaml-magic
jupyter-book jupyter-book
jupyterlab-drawio
jupyterlab-myst
jupyterlab_rise
jupyter-server-proxy jupyter-server-proxy
jupyterlab_latex jupyterhub
jupyterlab_rise
jupyterlab_widgets jupyterlab_widgets
jupyterlab-code-formatter jupyterlab-code-formatter
black jupyterlab-drawio
isort
jupyterhub
jupyterlab-git jupyterlab-git
jupyterlab-link-share
jupyterlab-myst
jupyterlab-system-monitor jupyterlab-system-monitor
jupytext
nbgitpuller nbgitpuller
iplantuml
sphinx-inline-tabs sphinx-inline-tabs
sphinxcontrib-plantuml sphinxcontrib-plantuml
sphinxcontrib-svg2pdfconverter sphinxcontrib-svg2pdfconverter
\ No newline at end of file
ARG LAB_BASE=jupyter/minimal-notebook:lab-3.6.1 ARG LAB_BASE=jupyter/minimal-notebook:lab-3.6.2
FROM ${LAB_BASE} FROM ${LAB_BASE}
...@@ -16,7 +16,8 @@ ARG BUILDPLATFORM ...@@ -16,7 +16,8 @@ ARG BUILDPLATFORM
RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM" RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM"
# Sets a cache for pip packages # Sets a cache for pip packages
ENV PIP_CACHE_DIR=/var/cache/buildkit/pip #ENV PIP_CACHE_DIR=/var/cache/buildkit/pip
ENV PIP_CACHE_DIR=/home/jovyan/work/var/cache/buildkit/pip
RUN mkdir -p ${PIP_CACHE_DIR} && \ RUN mkdir -p ${PIP_CACHE_DIR} && \
mkdir -p /var/cache/apt mkdir -p /var/cache/apt
...@@ -147,6 +148,8 @@ RUN echo -e "\e[93m**** Update Jupyter config ****\e[38;5;241m" && \ ...@@ -147,6 +148,8 @@ RUN echo -e "\e[93m**** Update Jupyter config ****\e[38;5;241m" && \
-e 's/# \(c.ServerApp.terminado_settings\)/\1/' \ -e 's/# \(c.ServerApp.terminado_settings\)/\1/' \
$HOME/.jupyter/jupyter_lab_config.py $HOME/.jupyter/jupyter_lab_config.py
RUN jupyter labextension install jupyterlab-jupytext
RUN ln -s /usr/share/plantuml/plantuml.jar /usr/local/bin/ RUN ln -s /usr/share/plantuml/plantuml.jar /usr/local/bin/
USER $NB_USER USER $NB_USER
...@@ -162,7 +165,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ ...@@ -162,7 +165,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
ARCH_LEG=amd64; \ ARCH_LEG=amd64; \
ARCH=amd64; \ ARCH=amd64; \
fi && \ fi && \
mkdir -p /home/jovyan/.cache/gistatus && \ mkdir -p /home/jovyan/.cache/gitstatus && \
curl -sL "https://github.com/romkatv/gitstatus/releases/download/v1.5.4/gitstatusd-linux-${ARCH_LEG}.tar.gz" | \ curl -sL "https://github.com/romkatv/gitstatus/releases/download/v1.5.4/gitstatusd-linux-${ARCH_LEG}.tar.gz" | \
tar --directory="/home/jovyan/.cache/gitstatus" -zx tar --directory="/home/jovyan/.cache/gitstatus" -zx
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment