mirror of
https://github.com/containers/podman.git
synced 2025-09-21 03:35:06 +08:00

changing the validate-in-container make target to use quay.io/libpod/validatepr:latest. this allows `make validate` to run to completion doing linting, ed's perl checks, and pre-commit.] The image is now based on F42 `awk` is not part of the base image, so I added `awk`. Signed-off-by: Brent Baude <bbaude@redhat.com>
18 lines
304 B
Docker
18 lines
304 B
Docker
FROM registry.fedoraproject.org/fedora:latest
|
|
|
|
WORKDIR /go/src/github.com/containers/podman
|
|
|
|
RUN dnf install -y systemd-devel \
|
|
awk \
|
|
btrfs-progs-devel \
|
|
git \
|
|
golang \
|
|
gpgme-devel \
|
|
libassuan-devel \
|
|
libseccomp-devel \
|
|
make \
|
|
man-db \
|
|
perl-Clone \
|
|
perl-FindBin \
|
|
pre-commit && dnf clean all
|