Setting Timezone in Dockerfile
Mar 14, 2023 · Tidbit
Sometimes you need to set timezone to the right one to adjust your application’s zone timing.
If you use Docker to containeraize your application, you can simply use dockerfile and put this command to set the timezone.
...
ENV TZ="Asia/Jakarta"
...
In the code above we set the timezone with ENV instruction by assign the TZ (which means timezone) to Asia/Jakarta.