mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-02 01:55:15 +00:00
These are standalone, better to have them at the top. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
16 lines
215 B
Docker
16 lines
215 B
Docker
FROM alpine:3.5
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add \
|
|
curl \
|
|
gcc \
|
|
git \
|
|
libc-dev \
|
|
linux-headers \
|
|
util-linux-dev \
|
|
&& true
|
|
|
|
COPY compile.sh /usr/bin/
|
|
|
|
ENTRYPOINT ["/usr/bin/compile.sh"]
|