feat(Docker): add timezone settings to dockerfile (#3292)

This commit is contained in:
Patrick Lewis
2020-09-22 02:33:15 -07:00
committed by GitHub
parent 868081e959
commit 3815e0df4f
3 changed files with 29 additions and 2 deletions

View File

@@ -16,6 +16,11 @@ RUN ./azerothcore/bin/acore-db-asm 1
FROM mysql:5.7
# List of timezones: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# set timezone environment variable
ENV TZ=Etc/UTC
ENV LANG C.UTF-8
# copy files from the previous build stage - see: https://docs.docker.com/develop/develop-images/multistage-build/