Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The following files are added (taken from Debian) to fix some common issues:
- `/etc/ssl/certs/ca-certificates.crt` : for HTTPS support
- `/usr/share/zoneinfo` : for timezones
- `/etc/services` : for named ports resolution
- `/etc/os-release` and `/usr/lib/os-release` : for base OS identification

### prom/busybox:glibc : glibc

Expand All @@ -25,6 +26,7 @@ The following files are added (taken from Debian) to fix some common issues:
- `/etc/ssl/certs/ca-certificates.crt` : for HTTPS support
- `/usr/share/zoneinfo` : for timezones
- `/etc/services` : for named ports resolution
- `/etc/os-release` and `/usr/lib/os-release` : for base OS identification
- `/lib/x86_64-linux-gnu/libpthread.so.0` : common required lib for project binaries that cannot be statically built.

## Build Docker images locally
Expand Down
3 changes: 3 additions & 0 deletions glibc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV DEBIAN_FRONTEND=noninteractive

RUN \
apt-get update && apt-get install -y --no-install-recommends \
base-files \
ca-certificates \
gcc \
netbase \
Expand All @@ -17,6 +18,8 @@ RUN set -x \
/etc/ssl/certs/ca-certificates.crt \
/usr/share/zoneinfo \
/etc/services \
/etc/os-release \
/usr/lib/os-release \
/lib/"$(gcc -print-multiarch)"/libpthread.so.* \
&& while [ "$#" -gt 0 ]; do \
f="$1"; shift; \
Expand Down
3 changes: 3 additions & 0 deletions uclibc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV DEBIAN_FRONTEND=noninteractive

RUN \
apt-get update && apt-get install -y --no-install-recommends \
base-files \
ca-certificates \
gcc \
netbase \
Expand All @@ -17,6 +18,8 @@ RUN set -x \
/etc/ssl/certs/ca-certificates.crt \
/usr/share/zoneinfo \
/etc/services \
/etc/os-release \
/usr/lib/os-release \
&& while [ "$#" -gt 0 ]; do \
f="$1"; shift; \
fn="$(basename "$f")"; \
Expand Down