Skip to content

Commit

Permalink
debug docker logprep
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrai2 committed Dec 17, 2024
1 parent 7887822 commit b99dc5c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Build image and export to Docker
uses: docker/build-push-action@v6
id: build-and-push
id: build
with:
context: .
load: true
Expand All @@ -57,9 +57,14 @@ jobs:
PYTHON_VERSION=${{ matrix.python-version }}
tags: ${{ steps.image-tag.outputs.tags }}

- name: List Docker imagers
run: |
docker image ls
- name: Ensure logprep is available in image
needs: build
run: |
docker run --rm ghcr.io/fkie-cad/logprep@${{ steps.build-and-push.outputs.digest }} --version
docker run --rm ghcr.io/fkie-cad/logprep@${{ steps.build.outputs.digest }} --version
- name: Push image
uses: docker/build-push-action@v6
Expand Down

0 comments on commit b99dc5c

Please sign in to comment.