Skip to content

openzipkin/docker-alpine

Repository files navigation

Gitter chat Build Status

ghcr.io/openzipkin/alpine is a minimal Alpine Linux image including CA certs and gcompat.

GitHub Container Registry: ghcr.io/openzipkin/alpine includes:

Using this image

This is an internal base layer primarily used in docker-java.

To browse the image, run it in interactive mode with TTY enabled like so:

docker run -ti --rm ghcr.io/openzipkin/alpine:3.19.1
/ #

Release process

Build the Dockerfile using the current version from https://alpinelinux.org/downloads/:

# Note 3.19.1 not 3.19!
./build-bin/build 3.19.1

Next, verify the built image matches that version:

docker run --rm openzipkin/alpine:test -c 'cat /etc/alpine-release'
3.19.1

To release the image, push a tag matching the arg to build-bin/build (ex 3.19.1). This triggers a GitHub Actions job to push the image.