mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-05 03:40:13 +00:00
10 lines
172 B
Bash
10 lines
172 B
Bash
|
#!/bin/bash
|
||
|
# install debug and testing tools into slim container
|
||
|
|
||
|
apt update && apt install -y vim htop bmon net-tools iputils-ping procps
|
||
|
|
||
|
pip install ipython
|
||
|
|
||
|
##
|
||
|
exit 0
|