ubi9/Dockerfile

16 lines
351 B
Docker

ARG REGISTRY_URL=docker.io/redhat
ARG UBI_VERSION=9.5
FROM ${REGISTRY_URL}/ubi9:${UBI_VERSION}
LABEL maintainer="Muhamad Aditya Prima <aprimediet@gmail.com>"
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