forked from nicopace/tmate-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (32 loc) · 1.33 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FROM phusion/baseimage:0.9.13
MAINTAINER Nicolas Pace <[email protected]>
# Set correct environment variables.
ENV HOME /root
# Regenerate SSH host keys. baseimage-docker does not contain any, so you
# have to do that yourself. You may also comment out this instruction; the
# init system will auto-generate one during boot.
RUN /etc/my_init.d/00_regen_ssh_host_keys.sh
# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]
# Use libssh 0.7 https://github.com/tmate-io/tmate/issues/82#issuecomment-216165761
RUN apt-add-repository ppa:kedazo/libssh-0.7.x
RUN apt-get update && \
apt-get -y install git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev cmake ruby && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Use the latest msgpack-c https://github.com/tmate-io/tmate/issues/82#issuecomment-216165761
RUN git clone https://github.com/msgpack/msgpack-c.git && \
cd msgpack-c && \
cmake . && \
make && \
make install && \
cd ..
RUN git clone https://github.com/nviennot/tmate-slave.git
RUN cd tmate-slave && \
./create_keys.sh && \
./autogen.sh && \
./configure && \
make
RUN mkdir /etc/service/tmate-slave
ADD tmate-slave.sh /etc/service/tmate-slave/run
RUN mkdir -p /etc/my_init.d
ADD message.sh /etc/my_init.d/message.sh