Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidate the integration test repos to a single one #789

Merged
merged 8 commits into from
Jan 29, 2025
Prev Previous commit
Next Next commit
integration tests: Update Containerfiles to use fully qualified image…
… name

Signed-off-by: Michal Šoltis <msoltis@redhat.com>
slimreaper35 committed Jan 28, 2025
commit 7b64e33a2cd2eae0e8b8679059dbeefff62e2d78
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18
FROM docker.io/node:18
slimreaper35 marked this conversation as resolved.
Show resolved Hide resolved

# Test disabled network access
RUN if curl -IsS www.google.com; then echo "Has network access!"; exit 1; fi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18
FROM docker.io/node:18

# Test disabled network access
RUN if curl -IsS www.google.com; then echo "Has network access!"; exit 1; fi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18
FROM docker.io/node:18

# Test disabled network access
RUN if curl -IsS www.google.com; then echo "Has network access!"; exit 1; fi