mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-16 04:29:35 +00:00
13 lines
179 B
Docker
13 lines
179 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade -a && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
&& true
|
|
|
|
COPY . /
|
|
|
|
ENTRYPOINT ["/bin/sh", "-c"]
|
|
CMD ["/tartar2initrd.sh"]
|