summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2017-11-01 11:24:59 -0400
committerMatthew Heon <matthew.heon@gmail.com>2017-11-01 11:24:59 -0400
commita031b83a09a8628435317a03f199cdc18b78262f (patch)
treebc017a96769ce6de33745b8b0b1304ccf38e9df0 /Dockerfile
parent2b74391cd5281f6fdf391ff8ad50fd1490f6bf89 (diff)
downloadpodman-a031b83a09a8628435317a03f199cdc18b78262f.tar.gz
podman-a031b83a09a8628435317a03f199cdc18b78262f.tar.bz2
podman-a031b83a09a8628435317a03f199cdc18b78262f.zip
Initial checkin from CRI-O repo
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile117
1 files changed, 117 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 000000000..607d5a860
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,117 @@
+FROM golang:1.8
+
+# libseccomp in jessie is not _quite_ new enough -- need backports version
+RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list
+
+RUN apt-get update && apt-get install -y \
+ apparmor \
+ autoconf \
+ automake \
+ bison \
+ build-essential \
+ curl \
+ e2fslibs-dev \
+ gawk \
+ gettext \
+ iptables \
+ pkg-config \
+ libaio-dev \
+ libcap-dev \
+ libfuse-dev \
+ libostree-dev \
+ libprotobuf-dev \
+ libprotobuf-c0-dev \
+ libseccomp2/jessie-backports \
+ libseccomp-dev/jessie-backports \
+ libtool \
+ libudev-dev \
+ protobuf-c-compiler \
+ protobuf-compiler \
+ python-minimal \
+ libglib2.0-dev \
+ libapparmor-dev \
+ btrfs-tools \
+ libdevmapper1.02.1 \
+ libdevmapper-dev \
+ libgpgme11-dev \
+ liblzma-dev \
+ netcat \
+ socat \
+ --no-install-recommends \
+ && apt-get clean
+
+# install bats
+RUN cd /tmp \
+ && git clone https://github.com/sstephenson/bats.git \
+ && cd bats \
+ && git reset --hard 03608115df2071fff4eaaff1605768c275e5f81f \
+ && ./install.sh /usr/local
+
+# install criu
+ENV CRIU_VERSION 1.7
+RUN mkdir -p /usr/src/criu \
+ && curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
+ && cd /usr/src/criu \
+ && make install-criu \
+ && rm -rf /usr/src/criu
+
+# Install runc
+ENV RUNC_COMMIT 84a082bfef6f932de921437815355186db37aeb1
+RUN set -x \
+ && export GOPATH="$(mktemp -d)" \
+ && git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \
+ && cd "$GOPATH/src/github.com/opencontainers/runc" \
+ && git fetch origin --tags \
+ && git checkout -q "$RUNC_COMMIT" \
+ && make static BUILDTAGS="seccomp selinux" \
+ && cp runc /usr/bin/runc \
+ && rm -rf "$GOPATH"
+
+# Install CNI plugins
+ENV CNI_COMMIT dcf7368eeab15e2affc6256f0bb1e84dd46a34de
+RUN set -x \
+ && export GOPATH="$(mktemp -d)" \
+ && git clone https://github.com/containernetworking/plugins.git "$GOPATH/src/github.com/containernetworking/plugins" \
+ && cd "$GOPATH/src/github.com/containernetworking/plugins" \
+ && git checkout -q "$CNI_COMMIT" \
+ && ./build.sh \
+ && mkdir -p /opt/cni/bin \
+ && cp bin/* /opt/cni/bin/ \
+ && rm -rf "$GOPATH"
+
+# Install custom CNI bridge test plugin
+# XXX: this plugin is meant to be a replacement for the old "test_plugin_args.bash"
+# we need this in testing because sandbox_run now gather IP address and the mock
+# plugin wasn't able to properly setup the net ns.
+# The bridge is based on the same commit as the one above.
+#ENV CNI_COMMIT 6bfe036c38c8e1410f1acaa4b2ee16f1851472e4
+ENV CNI_TEST_BRANCH custom-bridge
+RUN set -x \
+ && export GOPATH="$(mktemp -d)" \
+ && git clone https://github.com/runcom/plugins.git "$GOPATH/src/github.com/containernetworking/plugins" \
+ && cd "$GOPATH/src/github.com/containernetworking/plugins" \
+ && git checkout -q "$CNI_TEST_BRANCH" \
+ && ./build.sh \
+ && mkdir -p /opt/cni/bin \
+ && cp bin/bridge /opt/cni/bin/bridge-custom \
+ && rm -rf "$GOPATH"
+
+# Install crictl
+ENV CRICTL_COMMIT 16e6fe4d7199c5689db4630a9330e6a8a12cecd1
+RUN set -x \
+ && export GOPATH="$(mktemp -d)" \
+ && git clone https://github.com/kubernetes-incubator/cri-tools.git "$GOPATH/src/github.com/kubernetes-incubator/cri-tools" \
+ && cd "$GOPATH/src/github.com/kubernetes-incubator/cri-tools" \
+ && git checkout -q "$CRICTL_COMMIT" \
+ && go install github.com/kubernetes-incubator/cri-tools/cmd/crictl \
+ && cp "$GOPATH"/bin/crictl /usr/bin/ \
+ && rm -rf "$GOPATH"
+
+# Make sure we have some policy for pulling images
+RUN mkdir -p /etc/containers
+COPY test/policy.json /etc/containers/policy.json
+COPY test/redhat_sigstore.yaml /etc/containers/registries.d/registry.access.redhat.com.yaml
+
+WORKDIR /go/src/github.com/kubernetes-incubator/cri-o
+
+ADD . /go/src/github.com/kubernetes-incubator/cri-o