diff options
author | Chris Evich <cevich@redhat.com> | 2020-06-11 14:34:27 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2020-06-11 14:37:34 -0400 |
commit | 7f586a47d02bfbda7d0dc362651fb06e5347ac39 (patch) | |
tree | a107f53c2e27e9b3f7c81a713cf9c3dff4b2bf4a | |
parent | 39ad0387ca27097875b02b55c6f71c2f2b8bdd6c (diff) | |
download | podman-7f586a47d02bfbda7d0dc362651fb06e5347ac39.tar.gz podman-7f586a47d02bfbda7d0dc362651fb06e5347ac39.tar.bz2 podman-7f586a47d02bfbda7d0dc362651fb06e5347ac39.zip |
Fix missing code during in_podman build
Signed-off-by: Chris Evich <cevich@redhat.com>
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile index 623747295..16552e6b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,11 +10,7 @@ ENV SCRIPT_BASE=./contrib/cirrus ENV PACKER_BASE=$SCRIPT_BASE/packer # Only add minimal tooling necessary to complete setup. -ADD /$SCRIPT_BASE $GOSRC/$SCRIPT_BASE -ADD /hack/install_catatonit.sh $GOSRC/hack/ -ADD /cni/*.conflist $GOSRC/cni/ -ADD /test/*.json $GOSRC/test/ -ADD /test/*.conf $GOSRC/test/ +ADD / $GOSRC WORKDIR $GOSRC # Re-use repositories and package setup as in VMs under CI |