Created
September 5, 2016 16:12
-
-
Save athoune/72fc4a51d766ae758d4f17d5f7d15f3c to your computer and use it in GitHub Desktop.
Dockerfile for tmate-slave with Archlinux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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