ARG REGISTRY_URL=docker.io/redhat ARG UBI_VERSION=9.5 FROM ${REGISTRY_URL}/ubi9:${UBI_VERSION} LABEL maintainer="Muhamad Aditya Prima " ARG TIMEZONE="Asia/Jakarta" # Change timezone to desired timezone ENV TZ=${TIMEZONE} RUN dnf reinstall -y tzdata && \ dnf -y update && \ dnf -y autoremove && \ dnf -y clean all