mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-10 20:56:30 +00:00
excludes - Go base images as not yet available - perf which does not build with latest image Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
410 B
Docker
11 lines
410 B
Docker
# Tag: b77cfc4ad0033d4366df830ed697afc7bab458a2
|
|
FROM mobylinux/alpine-build-c@sha256:53739ea6042cb0ac39cf6e262012c1c4224206b2c9b719569fe7efa3a381348c
|
|
|
|
COPY . /
|
|
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 -
|
|
WORKDIR tini-${TINI_VERSION}
|
|
RUN cmake . && make
|
|
RUN cp -a tini-static /bin/tini
|