-
Colton Freeman authoredColton Freeman authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile 237 B
ARG BASE_REGISTRY=registry1.dso.mil
ARG BASE_IMAGE=ironbank/redhat/ubi/ubi9
ARG BASE_TAG=9.2
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
RUN dnf update -y --nodocs && \
dnf clean all && \
rm -rf /var/cache/dnf
USER nobody