blob: 05f27d7d4441c49ddcdac570c61080a9834c266e (
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
27
28
29
30
31
|
FROM registry.fedoraproject.org/fedora:28
# This Dockerfile is only for building libpod and running
# validation and gofmt tests.
RUN dnf -y install btrfs-progs-devel \
bzip2 \
findutils \
git \
glib2-devel \
glibc-static \
gnupg \
golang \
golang-github-cpuguy83-go-md2man \
gpgme-devel \
libassuan-devel \
libseccomp-devel \
libselinux-devel \
skopeo-containers \
make \
ostree-devel \
python \
python3-dateutil \
python3-psutil \
python3-pytoml \
python3-varlink \
golang-github-cpuguy83-go-md2man \
slirp4netns \
iptables && dnf -y clean all
ENV GOPATH=/go
|