mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-14 04:18:26 +00:00
This utility image takes a tarball as input and places the contents into a read-only, compressed squashfs filesystem which is produced on stdout. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
13 lines
218 B
Docker
13 lines
218 B
Docker
FROM linuxkit/alpine:f3cd219615428b2bd943411723eb28875275fae7
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
squashfs-tools \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "/make-squashfs" ]
|