Replace CMD in Dockerfile with ENTRYPOINT so that we can run docker image with command line arguments. For example --no-stream, --command :recent, etc.
Add ARG TZ and ENV TZ to Dockerfile so that time on timeline can be converted to local time using String#to_time(:local).
CMD
in Dockerfile withENTRYPOINT
so that we can run docker image with command line arguments. For example--no-stream
,--command :recent
, etc.ARG TZ
andENV TZ
to Dockerfile so that time on timeline can be converted to local time usingString#to_time(:local)
.