diff --git a/images/centos7/Dockerfile b/images/centos7/Dockerfile new file mode 100644 index 0000000..60eb00b --- /dev/null +++ b/images/centos7/Dockerfile @@ -0,0 +1,16 @@ +FROM centos:centos7 + +LABEL org.opencontainers.image.vendor="UW-IT" \ + org.opencontainers.image.authors="Justin Prosser" + +# dump out container image details for the logs +RUN echo "hello centos (amd64, arm64, ppc64)" +RUN echo -n "current OS is: "; uname -p + +# Pull latest CentOS 7 updates +RUN yum update -y +RUN yum erase -y linux-firmware +RUN yum clean all +RUN localedef -i en_US -f UTF-8 en_US.UTF-8 + +CMD uname -a && sleep infinity diff --git a/images/centos7/README.md b/images/centos7/README.md new file mode 100644 index 0000000..7d4e0ea --- /dev/null +++ b/images/centos7/README.md @@ -0,0 +1,3 @@ +# Cent OS 7 base image + +This the IAM CentOS 7 base image providing a weekly(?) updated base to build containers from. \ No newline at end of file