mirror of https://github.com/containers/podman.git
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>
This commit is contained in:
parent
dbebcbe619
commit
d4a8598ca4
2
Makefile
2
Makefile
|
@ -361,7 +361,7 @@ $(IN_CONTAINER): %-in-container:
|
|||
$(PODMANCMD) run --rm --env HOME=/root \
|
||||
-v $(CURDIR):/src -w /src \
|
||||
--security-opt label=disable \
|
||||
docker.io/library/golang:1.22 \
|
||||
quay.io/libpod/validatepr:latest \
|
||||
make $(*)
|
||||
|
||||
|
||||
|
|
|
@ -3,15 +3,15 @@ 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 \
|
||||
gpgme-devel \
|
||||
device-mapper-devel \
|
||||
btrfs-progs-devel \
|
||||
golang \
|
||||
make \
|
||||
man-db \
|
||||
git \
|
||||
perl-Clone \
|
||||
perl-FindBin \
|
||||
pre-commit && dnf clean all
|
||||
pre-commit && dnf clean all
|
||||
|
|
Loading…
Reference in New Issue