mirror of
https://github.com/lroche/hg2git.git
synced 2026-07-27 19:55:48 +00:00
18 lines
316 B
Docker
18 lines
316 B
Docker
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"]
|
|
|