Skip to content

Commit e84105e

Browse files
authored
Create Dockerfile
1 parent 97db552 commit e84105e

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)