mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 09:08:08 +00:00
These are standalone, better to have them at the top. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
17 lines
382 B
Docker
17 lines
382 B
Docker
FROM alpine:3.5
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add \
|
|
cmake \
|
|
gcc \
|
|
make \
|
|
musl-dev \
|
|
vim \
|
|
&& true
|
|
|
|
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 -
|
|
RUN cd tini-${TINI_VERSION} && cmake . && make && cp -a tini-static /bin/tini
|