Skip to content

Instantly share code, notes, and snippets.

@athoune
Created September 5, 2016 16:12
Show Gist options
  • 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 [email protected]
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