Merge pull request #4474 from PeterDaveHello/improve-docs-dockerfile

Speed up `git clone` in docs Dockerfile
This commit is contained in:
Thomas Kriechbaumer 2021-03-04 22:45:11 +01:00 committed by GitHub
commit 8178f6c77b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ RUN apt-get update && apt-get install -y \
&& pip3 install libtmux curl requests mitmproxy
# install latest tmux (to support popups)
RUN git clone https://github.com/tmux/tmux.git \
RUN git clone --depth 1 https://github.com/tmux/tmux.git \
&& cd tmux \
&& sh autogen.sh \
&& ./configure && make && make install