docker: clean up tmux dir in clirecording Dockerfile (#4542)

This commit is contained in:
Peter Dave Hello 2021-04-05 16:08:57 +08:00 committed by GitHub
parent f1b55fc817
commit b9f9094ec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,9 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
RUN git clone --depth 1 https://github.com/tmux/tmux.git \ RUN git clone --depth 1 https://github.com/tmux/tmux.git \
&& cd tmux \ && cd tmux \
&& sh autogen.sh \ && sh autogen.sh \
&& ./configure && make && make install && ./configure && make && make install \
&& cd ../ \
&& rm -rf tmux
WORKDIR /root/clidirector WORKDIR /root/clidirector