1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
This commit is contained in:
kev 2015-03-19 15:29:06 +08:00
parent 03ccdd845b
commit 17233b0e4d

@ -9,9 +9,6 @@ RUN apt-get update
RUN apt-get install -y build-essential pdnsd haproxy nginx
RUN apt-get clean
RUN curl -sSL https://bootstrap.pypa.io/get-pip.py | python
RUN pip install supervisor shadowsocks
ADD ./supervisord.conf /etc/supervisor/
ADD ./services.conf /etc/supervisor/conf.d/
ADD ./pdnsd.conf /etc/
@ -20,17 +17,16 @@ ADD ./haproxy.cfg /etc/haproxy/
ADD https://download.libsodium.org/libsodium/releases/libsodium-1.0.2.tar.gz /tmp/pkgs/
ADD http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.4.3.tar.gz /tmp/pkgs/
ADD https://bootstrap.pypa.io/get-pip.py /tmp/pkgs/
WORKDIR /tmp/pkgs/
RUN pip install supervisor shadowsocks
RUN tar xzf libsodium-1.0.2.tar.gz && \
cd libsodium-1.0.2 && \
./configure && \
make && \
make install
RUN echo /usr/local/lib > /etc/ld.so.conf.d/local.conf && ldconfig
RUN tar xzf dnscrypt-proxy-1.4.3.tar.gz && \
cd dnscrypt-proxy-1.4.3 && \
./configure && \