mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-02 08:23:05 +00:00
12 lines
150 B
Docker
12 lines
150 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade -a && \
|
|
apk add --no-cache \
|
|
jq \
|
|
sfdisk \
|
|
&& true
|
|
|
|
COPY . ./
|
|
CMD ["/bin/sh", "/mount.sh"]
|