mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Install lxc from source.
Haters gunna hate, cache bust. But this fixes a bunch of tests. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
parent
8916e2582b
commit
e3b3719f16
1 changed files with 9 additions and 1 deletions
10
Dockerfile
10
Dockerfile
|
@ -39,7 +39,6 @@ RUN apt-get update && apt-get install -y \
|
||||||
libapparmor-dev \
|
libapparmor-dev \
|
||||||
libcap-dev \
|
libcap-dev \
|
||||||
libsqlite3-dev \
|
libsqlite3-dev \
|
||||||
lxc=1.0* \
|
|
||||||
mercurial \
|
mercurial \
|
||||||
parallel \
|
parallel \
|
||||||
python-mock \
|
python-mock \
|
||||||
|
@ -62,6 +61,15 @@ RUN cd /usr/local/lvm2 \
|
||||||
&& make install_device-mapper
|
&& make install_device-mapper
|
||||||
# see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
|
# see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
|
||||||
|
|
||||||
|
# Install lxc
|
||||||
|
RUN mkdir -p /usr/src/lxc \
|
||||||
|
&& curl -sSL https://linuxcontainers.org/downloads/lxc/lxc-1.0.7.tar.gz | tar -v -C /usr/src/lxc/ -xz --strip-components=1
|
||||||
|
RUN cd /usr/src/lxc \
|
||||||
|
&& ./configure \
|
||||||
|
&& make \
|
||||||
|
&& make install \
|
||||||
|
&& ldconfig
|
||||||
|
|
||||||
# Install Go
|
# Install Go
|
||||||
RUN curl -sSL https://golang.org/dl/go1.4.src.tar.gz | tar -v -C /usr/local -xz
|
RUN curl -sSL https://golang.org/dl/go1.4.src.tar.gz | tar -v -C /usr/local -xz
|
||||||
ENV PATH /usr/local/go/bin:$PATH
|
ENV PATH /usr/local/go/bin:$PATH
|
||||||
|
|
Loading…
Reference in a new issue