https://github.com/openzipkin/docker-alpine
Alpine Linux base layer for Zipkin Docker images
https://github.com/openzipkin/docker-alpine
Last synced: 19 days ago
JSON representation
Alpine Linux base layer for Zipkin Docker images
- Host: GitHub
- URL: https://github.com/openzipkin/docker-alpine
- Owner: openzipkin
- License: apache-2.0
- Created: 2020-11-17T02:14:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-03T02:51:52.000Z (10 months ago)
- Last Synced: 2024-08-03T04:05:56.446Z (10 months ago)
- Language: Shell
- Size: 87.9 KB
- Stars: 3
- Watchers: 11
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
[](https://gitter.im/openzipkin/zipkin)
[](https://github.com/openzipkin/docker-alpine/actions?query=workflow%3Atest)`ghcr.io/openzipkin/alpine` is a minimal [Alpine Linux](https://alpinelinux.org) image including
CA certs and gcompat.GitHub Container Registry: [ghcr.io/openzipkin/alpine](https://github.com/orgs/openzipkin/packages/container/package/alpine) includes:
* `master` tag: latest commit
* `MAJOR.MINOR.PATCH` tag: release corresponding to a [Current Alpine Version](https://alpinelinux.org/downloads/)## Using this image
This is an internal base layer primarily used in [docker-java](https://github.com/openzipkin/docker-java).To browse the image, run it in interactive mode with TTY enabled like so:
```bash
docker run -ti --rm ghcr.io/openzipkin/alpine:3.21.2
/ #
```## Release process
Build the `Dockerfile` using the current version from https://alpinelinux.org/downloads/:
```bash
# Note 3.21.3 not 3.21!
./build-bin/build 3.21.3
```Next, verify the built image matches that version:
```bash
docker run --rm openzipkin/alpine:test -c 'cat /etc/alpine-release'
3.21.3
```To release the image, push a tag matching the arg to `build-bin/build` (ex `3.21.3`).
This triggers a [GitHub Actions](https://github.com/openzipkin/docker-alpine/actions) job to push the image.