Created
August 24, 2017 13:26
-
-
Save dataday/ea988ebe6317748ce1c292e7d00bfead to your computer and use it in GitHub Desktop.
Dockerfile for CentOS7
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
FROM centos:centos7 | |
MAINTAINER dataday <[email protected]> | |
COPY repositories/ /etc/yum.repos.d/ | |
RUN yum update -y && yum install -y yum-utils | |
COPY bashrc /tmp/bashrc | |
RUN cat "/tmp/bashrc" >> ~/.bashrc && rm -f /tmp/bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment