Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@athoune
Created September 5, 2016 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save athoune/72fc4a51d766ae758d4f17d5f7d15f3c to your computer and use it in GitHub Desktop.
Save athoune/72fc4a51d766ae758d4f17d5f7d15f3c to your computer and use it in GitHub Desktop.
Dockerfile for tmate-slave with Archlinux
FROM base/archlinux
RUN pacman-key --populate archlinux &&\
pacman-key --refresh-keys &&\
pacman-key -r arojas@us.es
RUN pacman -Sy
RUN yes | pacman -Sy libevent libssh libutempter msgpack-c openssl zlib automake cmake ruby autoconf gcc pkg-config make libunistring git
RUN mkdir src &&\
cd /src &&\
git clone https://github.com/tmate-io/tmate-slave.git &&\
cd tmate-slave &&\
./autogen.sh &&\
./configure &&\
make &&\
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment