We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 841f63b commit e14871cCopy full SHA for e14871c
.github/workflows/ci.yml
@@ -44,9 +44,11 @@ jobs:
44
cache-to: type=gha,mode=max
45
provenance: false
46
47
- - name: Test Run Docker Image
48
- run: |
49
- docker run -p 9000:8080 --rm --init ${{ steps.login-ecr.outputs.registry }}/${{ env.ECR_REPOSITORY }}:${{ github.sha }}
+ - name: Run the build process with Docker
+ uses: addnab/docker-run-action@v3
+ with:
50
+ image: ${{ steps.login-ecr.outputs.registry }}/${{ env.ECR_REPOSITORY }}:${{ github.sha }}
51
+ options: -p 9000:8080 --rm --init
52
53
- name: Test Lambda Endpoint
54
run: |
0 commit comments