add binder files #3

This commit is contained in:
Felix Lohmeier 2021-06-11 19:17:13 +02:00
parent 56922a2e48
commit 0287f46a82
3 changed files with 18 additions and 0 deletions

2
binder/apt.txt Normal file
View File

@ -0,0 +1,2 @@
openjdk-8-jre
lsof

14
binder/postBuild Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
set -e
# Install bash_kernel https://github.com/takluyver/bash_kernel
python -m bash_kernel.install
# Install go-task https://github.com/go-task/task
wget -q https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.tar.gz
tar -xzf task_linux_amd64.tar.gz
mkdir -p $HOME/.local/bin
mv task $HOME/.local/bin/
# Run install task to download OpenRefine and openrefine-client
task install

2
binder/requirements.txt Normal file
View File

@ -0,0 +1,2 @@
jupyter-server-proxy==1.5.3
bash_kernel==0.7.2