mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
33 lines
912 B
Docker
33 lines
912 B
Docker
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 \
|
|
rpm-build \
|
|
slirp4netns \
|
|
iptables && dnf -y clean all
|
|
|
|
ENV GOPATH=/go
|