diff --git a/singleuser/Dockerfile b/singleuser/Dockerfile index 823d86f..3aefdea 100755 --- a/singleuser/Dockerfile +++ b/singleuser/Dockerfile @@ -47,6 +47,8 @@ RUN /tmp/install_language_server.sh COPY install_monitoring.sh /tmp/ # RUN /tmp/install_monitoring.sh +COPY install_hugo.sh /tmp/ +COPY install_geckodriver.sh /tmp/ ## CONFIG # Copy over config which creates launcher icons in jupyterlab diff --git a/singleuser/install_geckodriver.sh b/singleuser/install_geckodriver.sh new file mode 100755 index 0000000..0c52cf7 --- /dev/null +++ b/singleuser/install_geckodriver.sh @@ -0,0 +1,7 @@ +#!/bin/sh +HUGO_VER=0.53 +wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz && \ + tar -xvzf geckodriver* && \ + chmod +x geckodriver && \ + mv geckodriver /usr/sbin/ && \ + rm geckodriver* diff --git a/singleuser/install_hugo.sh b/singleuser/install_hugo.sh new file mode 100755 index 0000000..3c37d46 --- /dev/null +++ b/singleuser/install_hugo.sh @@ -0,0 +1,5 @@ +#!/bin/sh +HUGO_VER=0.53 +wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VER}/hugo_${HUGO_VER}_Linux-64bit.deb && \ + dpkg -i hugo*.deb && \ + rm hugo*.deb