diff --git a/Makefile b/Makefile index d6194bad3..be0582236 100644 --- a/Makefile +++ b/Makefile @@ -162,7 +162,7 @@ test-full: PASSES="fmt build release unit integration functional e2e grpcproxy" ./test.sh 2<&1 | tee test-$(TEST_SUFFIX).log ensure-docker-test-image-exists: - make pull-docker-test || echo "WARNING: Container Image not found in registry, building locally"; make build-docker-test + make pull-docker-test || ( echo "WARNING: Container Image not found in registry, building locally"; make build-docker-test ) docker-test: ensure-docker-test-image-exists $(info GO_VERSION: $(GO_VERSION)) diff --git a/tests/Dockerfile b/tests/Dockerfile index 8774811f3..9b1809dd9 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.10 +FROM ubuntu:22.04 RUN rm /bin/sh && ln -s /bin/bash /bin/sh RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections