Skip to content

Commit

Permalink
install files
Browse files Browse the repository at this point in the history
  • Loading branch information
mathematicalmichael committed Nov 28, 2021
1 parent fd5d511 commit d0c7288
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions singleuser/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions singleuser/install_geckodriver.sh
Original file line number Diff line number Diff line change
@@ -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 changes: 5 additions & 0 deletions singleuser/install_hugo.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d0c7288

Please sign in to comment.