Skip to content

Commit fba6641

Browse files
committed
Use quay.io/libpod/alpine in e2e tests
The image quay.io/libpod/alpine_nginx doesn't have a `linux/arm64` version and the test "Single character volume mount" on Windows ARM64 was failing. Changing it to "quay.io/libpod/alpine" fixes it. Signed-off-by: Mario Loriedo <[email protected]>
1 parent 0b17093 commit fba6641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/machine/e2e/basic_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ var _ = Describe("run basic podman commands", func() {
113113
Expect(err).ToNot(HaveOccurred())
114114
Expect(volumeCreate).To(Exit(0))
115115

116-
run, err := mb.setCmd(bm.withPodmanCommand([]string{"run", "-v", "a:/test:Z", "quay.io/libpod/alpine_nginx", "true"})).run()
116+
run, err := mb.setCmd(bm.withPodmanCommand([]string{"run", "-v", "a:/test:Z", "quay.io/libpod/alpine", "true"})).run()
117117
Expect(err).ToNot(HaveOccurred())
118118
Expect(run).To(Exit(0))
119119
})

0 commit comments

Comments
 (0)