added docker-entrypoint.sh

Just setting timezone for system tools (`date` and others) to match app timezone defined with GENERIC_TIMEZONE env var.
This commit is contained in:
Alexandre Nizoux
2019-10-26 13:38:46 +02:00
committed by GitHub
parent 8861cb17c8
commit cc97cc7b71

View File

@@ -0,0 +1,5 @@
#!/bin/sh
ln -s /usr/share/zoneinfo/${GENERIC_TIMEZONE:-America/New_York} /etc/localtime
exec "$@"