Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: add arm64 support for docker image #6

Merged
merged 3 commits into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/reusable-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
tags: ghcr.io/openclarity/exploit-db-server:${{ inputs.image_tag }}
file: Dockerfile
push: ${{ inputs.push }}
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# go-exploitdb v0.4.5
FROM vuls/go-exploitdb@sha256:9f18d41d3f1a75d851a6126dba8aff873d1d2bb2ded78cbd6d0150cd0dba655d
FROM vuls/go-exploitdb:v0.4.5@sha256:ba49bb2334b7747a05f8899ead84c5d09ca3f4879419aa76d63f308fa4215c9c

# Make directory to store DB if not volume mounted
RUN mkdir /vuls
Expand Down