Files
podman/contrib/validatepr/Containerfile
Brent Baude d4a8598ca4 make validate-in-container changes
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>
2025-06-10 12:38:35 -05:00

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