Docker Q&A - lyonwang/TechNotes GitHub Wiki
Windows Container TimeZone
FROM microsoft/dotnet:2.1-sdk-nanoserver-sac2016
ENV TZ="Taipei Standard Time"
#'US Eastern Standard Time'
ENTRYPOINT powershell "&{Set-Timezone '$Env:TZ'; Get-Timezone; ping -t 127.0.0.1}"