Skip to content

Instantly share code, notes, and snippets.

@rsp9u
Created February 13, 2020 06:57
Show Gist options
  • Save rsp9u/b2ca0c5e4af6cb8dd0a35b430bc0a192 to your computer and use it in GitHub Desktop.
Save rsp9u/b2ca0c5e4af6cb8dd0a35b430bc0a192 to your computer and use it in GitHub Desktop.
Alpine tmux build
FROM alpine
RUN apk add --no-cache gcc g++ make automake autoconf pkgconfig git libevent-dev ncurses-dev byacc bsd-compat-headers
RUN \
git clone https://github.com/tmux/tmux.git && \
cd tmux && \
./autogen.sh && \
./configure && \
make && \
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment