summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2020-09-29 15:37:25 -0400
committerChris Evich <cevich@redhat.com>2020-09-30 09:24:01 -0400
commitf32fa3dd599aaeef74c14a7f1c76e1d27e56d1dd (patch)
treeb3a02ca6533331290a53d0b6a6c4008e0076d95d
parent4d57313449a7f7c86697ad830816f5c1e73c05ca (diff)
downloadpodman-f32fa3dd599aaeef74c14a7f1c76e1d27e56d1dd.tar.gz
podman-f32fa3dd599aaeef74c14a7f1c76e1d27e56d1dd.tar.bz2
podman-f32fa3dd599aaeef74c14a7f1c76e1d27e56d1dd.zip
Fix ubuntu exec_test
Test passes on Fedora because the registry server is one of the defaults. However it is not typically configured on Ubuntu hosts, and therefor this test can fail. While specifying the FQIN in the dockerfile text is not an ideal solution, it cannot negatively affect other tests which utilize `podmanTest.BuildImage`. Signed-off-by: Chris Evich <cevich@redhat.com>
-rw-r--r--test/e2e/exec_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go
index 7d50c02b2..93a713f28 100644
--- a/test/e2e/exec_test.go
+++ b/test/e2e/exec_test.go
@@ -286,7 +286,7 @@ var _ = Describe("Podman exec", func() {
It("podman exec preserves container groups with --user and --group-add", func() {
SkipIfRemote("FIXME: This is broken SECCOMP Failues?")
- dockerfile := `FROM fedora-minimal
+ dockerfile := `FROM registry.fedoraproject.org/fedora-minimal
RUN groupadd -g 4000 first
RUN groupadd -g 4001 second
RUN useradd -u 1000 auser`