From 38a76b90b2d3c0fa991f2abfa0fa135c2d9364f2 Mon Sep 17 00:00:00 2001 From: Chunlin Yang Date: Fri, 17 May 2024 09:52:38 +0800 Subject: [PATCH] Fix e2e issues (#89) Signed-off-by: clyang82 --- .github/workflows/e2e.yml | 5 ++--- Dockerfile | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index d0685da9..bcca5b04 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -5,9 +5,6 @@ on: pull_request: branches: - main - push: - branches: - - main env: GO_VERSION: '1.21' @@ -35,3 +32,5 @@ jobs: - name: Test E2E run: | make e2e-test + env: + container_tool: docker diff --git a/Dockerfile b/Dockerfile index 6c403b18..ea56c88f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ COPY . $SOURCE_DIR ENV GOFLAGS="" RUN make binary -RUN pwd FROM registry.access.redhat.com/ubi9/ubi-minimal:latest