-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added centos7 base image definition. (#37)
noting this is a minimal first step to base the CI setup needed for weekly images.
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |