Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sgerrand/docker-glibc-builder

A glibc binary package builder in Docker
https://github.com/sgerrand/docker-glibc-builder

docker-glibc-builder glibc hacktoberfest hacktoberfest-accepted

Last synced: 4 days ago
JSON representation

A glibc binary package builder in Docker

Awesome Lists containing this project

README

        

# docker-glibc-builder

A glibc binary package builder in Docker. Produces a glibc binary package that can be imported into a rootfs to run applications dynamically linked against glibc.

## Usage

Build a glibc package based on version 2.39 with a prefix of `/usr/glibc-compat`:

docker run --rm --env STDOUT=1 sgerrand/glibc-builder 2.39 /usr/glibc-compat > glibc-bin.tar.gz

You can also keep the container around and copy out the resulting file:

docker run --name glibc-binary sgerrand/glibc-builder 2.39 /usr/glibc-compat
docker cp glibc-binary:/glibc-bin-2.39.tar.gz ./
docker rm glibc-binary