forked from Michel2/hg2git
17 lines
297 B
Docker
17 lines
297 B
Docker
FROM buildpack-deps:bookworm
|
|
|
|
MAINTAINER Lionel Roche
|
|
|
|
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"]
|