Skip to content

Commit

Permalink
Creating Dockerfile (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedeldaly097 committed Apr 28, 2024
1 parent 3f19396 commit 15f5621
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM alpine as builder

RUN apk add --update git autoconf automake libtool gcc musl-dev zlib-dev bzip2-dev lzo-dev coreutils make g++ lz4-dev && \
git clone https://github.com/ckolivas/lrzip.git && \
cd /lrzip && ./autogen.sh && ./configure && make -j `nproc` && make install

FROM alpine

RUN apk add --update --no-cache lzo libbz2 libstdc++ lz4-dev && \
rm -rf /tmp/* /var/tmp/*

COPY --from=builder /usr/local/bin/lrzip /usr/local/bin/lrzip
CMD ["/usr/local/bin/lrzip"]

CMD ["/bin/sh"]

0 comments on commit 15f5621

Please sign in to comment.