Create entrypoint.sh

This commit is contained in:
Leigh Phillips 2021-01-16 13:06:25 -08:00 committed by GitHub
parent b97dbb2478
commit 99bc5b3bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

13
entrypoint.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/sh
printenv >> /etc/environment
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Install speedtest-cli
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61
echo "deb https://ookla.bintray.com/debian buster main" | tee /etc/apt/sources.list.d/speedtest.list
apt-get update && apt-get -q -y install speedtest
#apt-get -q -y autoremove && apt-get -q -y clean
#rm -rf /var/lib/apt/lists/*
exec /usr/local/bin/python3 $@