Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/altipla-consulting/distroless-glibc

Distroless Docker image for static and glibc binaries.
https://github.com/altipla-consulting/distroless-glibc

Last synced: about 1 month ago
JSON representation

Distroless Docker image for static and glibc binaries.

Awesome Lists containing this project

README

        

# distroless-glibc

Distroless Docker image for static and glibc binaries.

## Usage

Use it as the base image in your Dockerfile:

```dockerfile
FROM ghcr.io/altipla-consulting/distroless-glibc:latest

WORKDIR /opt/ac
COPY tmp/bin/foo .

CMD ["/opt/ac/foo"]
```