Sign inSign up

jfxs/alpine-tokei

By jfxs

•Updated 6 days ago

A lightweight docker image to run Tokei that displays statistics about your code.

Image
0

8.6K

jfxs/alpine-tokei repository overview

⁠Tokei

Software License Pipeline Status

A Tokei⁠ Docker image that displays statistics about your code:

  • lightweight image based on a alpine,
  • multiarch with support of amd64 and arm64,
  • runs as a non-root user (UID 10010),
  • automatically updated: Renovate tracks the Alpine, Tokei and go-task versions and opens the merge requests,
  • image signed with Cosign⁠,
  • a software bill of materials (SBOM) attestation added using Syft⁠,
  • available on Docker Hub and Quay.io.

GitLab The main repository.

Docker Hub The Docker Hub registry.

Quay.io The Quay.io registry.

⁠Running Tokei

docker run -t --rm -v $(pwd):/workdir jfxs/alpine-tokei /bin/sh -c "tokei ."

The container runs as UID 10010, so mounted files must be readable by that user. Add --user $(id -u):$(id -g) to run as yourself instead.

⁠Running Tokei in Gitlab-CI

Example of usage with Gitlab-CI:

 ...
code-statistics:
  image: jfxs/alpine-tokei
  stage: lint
  script:
    - tokei .

⁠Built with

Docker latest tag is 14.0.0-r0-001, 14.0, 14⁠ and has:

NameVersionType
go-task3.51.1-r1apk
tokei14.0.0-r0apk

Dockerhub Overview page⁠ has the details of the last published image.

⁠Versioning

Docker tag definition:

  • the Tokei version used,
  • a dash
  • an increment to differentiate build with the same version starting at 001
<tokei_version>-<increment>

Example: 12.1.2-001

⁠Signature and attestation

Cosign⁠ public key:

-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEa3yV6+yd/l4zh/tfT6Tx+zn0dhy3
BhFqSad1norLeKSCN2MILv4fZ9GA6ODOlJOw+7vzUvzZVr9IXnxEdjoWJw==
-----END PUBLIC KEY-----

The public key is also available online: https://gitlab.com/op_so/docker/cosign-public-key/-/raw/main/cosign.pub⁠.

To verify an image:

cosign verify --key cosign.pub $IMAGE_URI

To verify and get the software bill of materials (SBOM) attestation:

cosign verify-attestation --key cosign.pub --type spdxjson $IMAGE_URI | jq '.payload | @base64d | fromjson | .predicate'

⁠Authors

⁠License

This program is free software: you can redistribute it and/or modify it under the terms of the MIT License (MIT). See the LICENSE⁠ for details.

Tag summary

Content type

Image

Digest

sha256:c5dcd2402…

Size

21.1 MB

Last updated

6 days ago

docker pull jfxs/alpine-tokei