refactor: using more advanced scripts for more customization

This commit is contained in:
2024-02-12 17:22:57 +01:00
parent 8dc7cad562
commit 89db2b3155
8 changed files with 44 additions and 40 deletions

View File

@@ -0,0 +1,12 @@
FROM ubuntu:20.04
WORKDIR /build/ugrep
RUN apt-get update \
&& apt-get install -y make vim git clang wget unzip libpcre2-dev libz-dev libbz2-dev liblzma-dev liblz4-dev libzstd-dev
RUN git clone --depth=1 https://github.com/Genivia/ugrep /build/ugrep
RUN ./build.sh
CMD ["sleep", "infinity"]