mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-09 13:23:25 +00:00
Use the alpine base image and install the tools to compile tini manually. This removes the dependency on c-compile. Also use the git tree hash for the package hash while at it. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
20 lines
543 B
Docker
20 lines
543 B
Docker
FROM linuxkit/alpine:c5021a113803f7608e3908014d316c3490183d0b@sha256:4c7a80173c71ca5019dc56f40442b3a8345f141dd46593bd1fe6d130294d07cb AS build
|
|
RUN apk add \
|
|
cmake \
|
|
gcc \
|
|
make \
|
|
musl-dev \
|
|
vim
|
|
|
|
ENV TINI_VERSION=0.13.0
|
|
ADD https://github.com/krallin/tini/archive/v${TINI_VERSION}.tar.gz tini-${TINI_VERSION}.tar.gz
|
|
|
|
RUN zcat tini-${TINI_VERSION}.tar.gz | tar xvf -
|
|
RUN cd tini-${TINI_VERSION} && cmake . && make && cp -a tini-static /bin/tini
|
|
|
|
FROM scratch
|
|
ENTRYPOINT []
|
|
CMD []
|
|
WORKDIR /
|
|
COPY --from=build bin/tini bin/tini
|