diff options
Diffstat (limited to 'etc/pkgs')
| -rwxr-xr-x | etc/pkgs/000-dummy.sh | 2 | ||||
| -rwxr-xr-x | etc/pkgs/001-tini.sh | 18 | ||||
| -rwxr-xr-x | etc/pkgs/002-nodejs.sh | 17 | ||||
| -rwxr-xr-x | etc/pkgs/003-jupyter.sh | 15 |
4 files changed, 52 insertions, 0 deletions
diff --git a/etc/pkgs/000-dummy.sh b/etc/pkgs/000-dummy.sh new file mode 100755 index 0000000..06bd986 --- /dev/null +++ b/etc/pkgs/000-dummy.sh @@ -0,0 +1,2 @@ +#!/bin/bash +exit 0 diff --git a/etc/pkgs/001-tini.sh b/etc/pkgs/001-tini.sh new file mode 100755 index 0000000..44bb172 --- /dev/null +++ b/etc/pkgs/001-tini.sh @@ -0,0 +1,18 @@ +#!/bin/bash +set -x + +sudo yum install -y cmake glibc-static || exit 1 +git clone https://github.com/krallin/tini.git +export CFLAGS="${CFLAGS} -DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37" + +pushd tini + git checkout v0.18.0 + mkdir -p build + pushd build + cmake .. + make + install -m755 tini ${TOOLCHAIN_BIN} + popd +popd + +rm -rf tini diff --git a/etc/pkgs/002-nodejs.sh b/etc/pkgs/002-nodejs.sh new file mode 100755 index 0000000..b52a229 --- /dev/null +++ b/etc/pkgs/002-nodejs.sh @@ -0,0 +1,17 @@ +#!/bin/bash +set -x + +name=node +version=v10.15.0 +srcdir=${name}-${version} +tarball=${srcdir}.tar.gz +url=https://nodejs.org/dist/${version}/${tarball} + +curl -LO "${url}" +tar xf "${tarball}" +pushd "${srcdir}" + export CFLAGS="${CFLAGS} -fPIC" + ./configure --prefix=${TOOLCHAIN} + make -j${_maxjobs} + make install +popd diff --git a/etc/pkgs/003-jupyter.sh b/etc/pkgs/003-jupyter.sh new file mode 100755 index 0000000..dfc312a --- /dev/null +++ b/etc/pkgs/003-jupyter.sh @@ -0,0 +1,15 @@ +#!/bin/bash +set -x + +pip install --upgrade --progress-bar=off \ + notebook==5.7.2 \ + jupyterhub==0.9.4 \ + jupyterlab==0.35.4 + +jupyter labextension install @jupyterlab/hub-extension@^0.12.0 +jupyter notebook --generate-config -y + +# Clean up +npm cache clean --force +rm -rf ${TOOLCHAIN}/share/jupyter/lab/staging +rm -rf /home/${USER_ACCT}/.cache/yarn |
