Skip to content

Commit bde27c6

Browse files
fix: add -i flag to docker run for stdin forwarding
1 parent bc58824 commit bde27c6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ jobs:
117117
- name: Run smoke tests
118118
run: |
119119
docker pull ${{ steps.info.outputs.tag }}
120-
docker run --rm ${{ steps.info.outputs.tag }} bash < images/${{ matrix.image }}/test-smoke.sh
120+
docker run --rm -i ${{ steps.info.outputs.tag }} bash < images/${{ matrix.image }}/test-smoke.sh

.github/workflows/test-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ jobs:
8282
fi
8383
IMAGE="${{ env.REGISTRY }}/${{ env.ORG }}/${{ matrix.image }}:${TAG}"
8484
docker pull "$IMAGE"
85-
docker run --rm "$IMAGE" bash < images/${{ matrix.image }}/test-smoke.sh
85+
docker run --rm -i "$IMAGE" bash < images/${{ matrix.image }}/test-smoke.sh

0 commit comments

Comments
 (0)