initial commit

This commit is contained in:
lroche
2018-03-09 18:33:55 +01:00
commit c16e4cf4bb
4 changed files with 70 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM buildpack-deps:jessie
MAINTAINER Lionel Roche
RUN mkdir -p work
WORKDIR work
#Install fastexport tool:
RUN mkdir -p /usr/local/src \
&& cd /usr/local/src \
&& git clone https://github.com/frej/fast-export.git
RUN cd /work
COPY hg2git.sh .
RUN chmod +x hg2git.sh
ENTRYPOINT ["/work/hg2git.sh"]