I asked the question in email and get answers from those colleagus.
Question:
I failed to change time zone on latest iris container(Ubuntu), because:
I am irisowner, no root password
There is no sudo command
I used to use below Dockfile setting to change time zone while creating a new docker image. However, those commands doesn’t work from non-root user.
FROM $IRIS_IMAGE:$IRIS_VERSION USER root RUN export DEBIAN_FRONTEND=noninteractive; \ export DEBCONF_NONINTERACTIVE_SEEN=true; \ echo 'tzdata tzdata/Areas select Asia' | debconf-set-selections; \ echo 'tzdata





