Update to bookworm and overall style formatted

This commit is contained in:
2023-11-04 18:20:02 +01:00
parent 2a1dbbdb89
commit 17a6f37825
+7 -8
View File
@@ -1,17 +1,16 @@
FROM buildpack-deps:jessie
FROM buildpack-deps:bookworm
MAINTAINER Lionel Roche
RUN mkdir -p work
WORKDIR 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
# 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"]