We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97db552 commit e84105eCopy full SHA for e84105e
1 file changed
Dockerfile
@@ -0,0 +1,17 @@
1
+FROM centos:7
2
+LABEL version="0.6a"
3
+LABEL description="Subversion to GitHub Migrator"
4
+
5
+MAINTAINER Jared Murrell <primetheus@github.com>
6
7
+COPY _functions.sh /root/_functions.sh
8
+COPY svn2github.sh /root/svn2github.sh
9
+COPY settings.ini /root/settings.ini
10
11
+RUN yum -y localinstall https://centos7.iuscommunity.org/ius-release.rpm &&\
12
+ yum -y install git2u-svn git2u git-lfs bc && yum clean all &&\
13
+ rm -fr /var/cache/yum && chmod +x /root/svn2github.sh
14
15
+WORKDIR /root
16
17
+CMD [ "bash" ]
0 commit comments