From a2c91e7276564eec9ce5d5b213d8d694e5883078 Mon Sep 17 00:00:00 2001 From: Luke Brody Date: Wed, 14 Aug 2024 22:32:01 -0700 Subject: [PATCH] actually use container.image --- .github/workflows/check.yml | 4 +++- react/test/Dockerfile | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index b4dd6fde7..d6cde9aa5 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -52,5 +52,7 @@ jobs: e2e: runs-on: ubuntu-22.04 needs: build-and-push-image + container: + image: ghcr.io/${{ needs.build.outputs.image_tag }} steps: - - uses: docker://ghcr.io/${{ needs.build.outputs.image_tag }} + - run: /urbanstats/test-ci.sh diff --git a/react/test/Dockerfile b/react/test/Dockerfile index ba8e593b0..2b77a2e8a 100644 --- a/react/test/Dockerfile +++ b/react/test/Dockerfile @@ -22,4 +22,4 @@ RUN apt-get -y install libx11-6:i386 RUN apt-get -y install fluxbox COPY ./ ./ -CMD /urbanstats/test-ci.sh \ No newline at end of file +ENTRYPOINT [ "/bin/bash" ] \ No newline at end of file