summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-04-28 11:45:51 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-04-30 20:45:33 +0000
commitc8c39779a7919e78a97b97394930080885a41425 (patch)
tree75bee479259607b70ecb076f288d9909ead3fa7e /Dockerfile
parent52ace66e76ca2854e58ded9d337a3ff1d26a9202 (diff)
downloadpodman-c8c39779a7919e78a97b97394930080885a41425.tar.gz
podman-c8c39779a7919e78a97b97394930080885a41425.tar.bz2
podman-c8c39779a7919e78a97b97394930080885a41425.zip
correct varlink command in service file
The struct of the varlink command changed to accept a URI as input. This was never updated in the service file Signed-off-by: baude <bbaude@redhat.com> Closes: #691 Approved by: mheon
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d25fe0258..adead646d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -35,12 +35,13 @@ RUN apt-get update && apt-get install -y \
liblzma-dev \
netcat \
socat \
+ python3-pip \
--no-install-recommends \
&& apt-get clean
ADD . /go/src/github.com/projectatomic/libpod
-RUN set -x && cd /go/src/github.com/projectatomic/libpod && make install.libseccomp
+RUN set -x && cd /go/src/github.com/projectatomic/libpod && make install.libseccomp.sudo
# install criu
ENV CRIU_VERSION 1.7
@@ -114,6 +115,9 @@ COPY cni/87-podman-bridge.conflist /etc/cni/net.d/87-podman-bridge.conflist
# Make sure we have some policy for pulling images
RUN mkdir -p /etc/containers && curl https://raw.githubusercontent.com/projectatomic/registries/master/registries.fedora -o /etc/containers/registries.conf
+# Install python3 pip module
+RUN pip3 install varlink
+
COPY test/policy.json /etc/containers/policy.json
COPY test/redhat_sigstore.yaml /etc/containers/registries.d/registry.access.redhat.com.yaml