mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 09:30:05 +00:00
These utilities are needed to compile tini, rngd, and toybox. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
26 lines
377 B
Docker
26 lines
377 B
Docker
FROM alpine:3.5
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add \
|
|
argp-standalone \
|
|
automake \
|
|
bash \
|
|
bsd-compat-headers \
|
|
build-base \
|
|
cmake \
|
|
curl \
|
|
gcc \
|
|
git \
|
|
libc-dev \
|
|
linux-headers \
|
|
make \
|
|
musl-dev \
|
|
patch \
|
|
util-linux-dev \
|
|
vim \
|
|
&& true
|
|
|
|
COPY compile.sh /usr/bin/
|
|
|
|
ENTRYPOINT ["/usr/bin/compile.sh"]
|