We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79ffed4 commit acfb554Copy full SHA for acfb554
1 file changed
Dockerfile
@@ -8,9 +8,11 @@ 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
+RUN yum -y localinstall https://centos7.iuscommunity.org/ius-release.rpm && \
+ yum -y install git2u-svn git2u git-lfs bc && yum clean all && \
+ rm -fr /var/cache/yum && chmod +x /root/svn2github.sh && \
14
+ git config --global user.name "SVN to GitHub" && git config --global \
15
+ user.email "svn2github@example.com"
16
17
WORKDIR /root
18
0 commit comments