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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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