{"id":15762059,"url":"https://github.com/garethr/snykum","last_synced_at":"2026-02-26T05:20:57.251Z","repository":{"id":66535168,"uuid":"293034988","full_name":"garethr/snykum","owner":"garethr","description":"A technical demonstration of building ARM images using Docker and GitHub Actions, and testing them for vulnerabilities using Snyk.","archived":false,"fork":false,"pushed_at":"2020-09-07T15:35:55.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-28T17:40:52.560Z","etag":null,"topics":["arm64","snyk"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/garethr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-05T08:29:15.000Z","updated_at":"2020-09-07T15:35:57.000Z","dependencies_parsed_at":"2023-03-18T06:31:05.550Z","dependency_job_id":null,"html_url":"https://github.com/garethr/snykum","commit_stats":{"total_commits":32,"total_committers":1,"mean_commits":32.0,"dds":0.0,"last_synced_commit":"2e5b8087a34381c4807e9cadc50b1c4999f81660"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/garethr/snykum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garethr%2Fsnykum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garethr%2Fsnykum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garethr%2Fsnykum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garethr%2Fsnykum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/garethr","download_url":"https://codeload.github.com/garethr/snykum/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garethr%2Fsnykum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29849466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arm64","snyk"],"created_at":"2024-10-04T11:06:24.908Z","updated_at":"2026-02-26T05:20:57.228Z","avatar_url":"https://github.com/garethr.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Snykum\n\n![Image](https://github.com/garethr/snykum/workflows/Image/badge.svg)\n\nA technical demonstration of building ARM images using Docker and GitHub Actions, and testing them for vulnerabilities using [Snyk](https://snyk.io).\n\n\u003e 1. Install QEMU using [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action)\n\u003e 2. Install and configure buildx using [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action)\n\u003e 3. Build the ARM image using `docker buildx` and [docker/build-push-action](https://github.com/docker/build-push-action)\n\u003e 4. Check the image for vulnerabilities using [snyk/actions/docker](https://github.com/snyk/actions/tree/master/docker)\n\u003e 5. Push to Docker Hub using [docker/github-action](https://github.com/docker/github-actions)\n\n```yaml\nname: Image\n\non:\n  push:\n  workflow_dispatch:\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - uses: github/super-linter@v3\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n      # QEMU is used to emulated the ARM architecture, allowing us\n      # to build not-x86 images\n      - uses: docker/setup-qemu-action@master\n        with:\n          platforms: all\n      # Buildx provides an easier way of building Docker images for other architectures\n      - uses: docker/setup-buildx-action@master\n      - name: Build image\n        run: |\n          docker buildx build --platform=linux/arm64 --load -t temporary .\n      - name: Run Snyk to check Docker image for vulnerabilities\n        uses: snyk/actions/docker@master\n        env:\n          SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}\n        with:\n          command: monitor\n          image: temporary\n          args: --file=Dockerfile --platform=linux/arm64 --project-name=docker.io/garethr/snykum\n      - uses: docker/login-action@v1\n        with:\n          username: ${{ secrets.DOCKERHUB_USERNAME }}\n          password: ${{ secrets.DOCKERHUB_PASSWORD }}\n      # Use the build cache and push the imagee\n      - name: Push image to Docker Hub\n        run: |\n          docker buildx build --platform=linux/arm64 --push -t garethr/snykum .\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarethr%2Fsnykum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgarethr%2Fsnykum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarethr%2Fsnykum/lists"}