install files

This commit is contained in:
Michael Pilosov 2021-11-27 19:07:37 -07:00
parent fd5d5111db
commit d0c7288e8e
3 changed files with 14 additions and 0 deletions

View File

@ -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

View File

@ -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*

5
singleuser/install_hugo.sh Executable file
View File

@ -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