This file contains hidden or 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:7 | |
MAINTAINER R.I.Pienaar "[email protected]" | |
WORKDIR /opt/gogs | |
RUN yum install -y git openssh-server unzip initscripts rsync; yum clean all | |
RUN yum -y update; yum clean all | |
RUN useradd --shell /bin/bash --system --comment gogits git |