summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 62374729515e3ef21ca9cd7a15165b58b278b2e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM registry.fedoraproject.org/fedora:latest

# This container image is utilized by the containers CI automation system
# for building and testing libpod inside a container environment.
# It is assumed that the source to be tested will overwrite $GOSRC (below)
# at runtime.
ENV GOPATH=/var/tmp/go
ENV GOSRC=$GOPATH/src/github.com/containers/libpod
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/
WORKDIR $GOSRC

# Re-use repositories and package setup as in VMs under CI
RUN bash $PACKER_BASE/fedora_packaging.sh && \
    dnf clean all && \
    rm -rf /var/cache/dnf

# Mirror steps taken under CI
RUN bash -c 'source $GOSRC/$SCRIPT_BASE/lib.sh && install_test_configs'