mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-18 23:08:00 +00:00
13 lines
218 B
Docker
13 lines
218 B
Docker
FROM linuxkit/alpine:1b05307ae8152e3d38f79e297b0632697a30c65c
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
squashfs-tools \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "/make-squashfs" ]
|