Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup Dockerfile template a bit #747

Merged
merged 1 commit into from Feb 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,3 +1,3 @@
FROM centos:7

RUN yum makecache fast && yum update -y && yum install -y python sudo yum-plugin-ovl && sed -i 's/plugins=0/plugins=1/g' /etc/yum.conf
RUN yum makecache fast && yum update -y && yum install -y sudo yum-plugin-ovl && sed -i 's/^plugins=0$/plugins=1/g' /etc/yum.conf && yum clean all
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • python is already part of the base image
  • add more specificity to the sed replace to enable yum plugins
  • add yum clean all to remove yum crud from resulting image.