mirror of
https://github.com/linuxserver/rootfs-builder-alpine.git
synced 2026-02-04 12:46:10 +08:00
22 lines
381 B
Plaintext
22 lines
381 B
Plaintext
FROM lsiobase/alpine.arm64
|
|
MAINTAINER sparklyballs
|
|
|
|
# install packages
|
|
RUN \
|
|
apk add --no-cache \
|
|
bash \
|
|
curl \
|
|
tzdata \
|
|
xz
|
|
|
|
# fetch builder script from gilderlabs
|
|
RUN \
|
|
curl -o \
|
|
/mkimage-alpine.bash -L \
|
|
https://raw.githubusercontent.com/gliderlabs/docker-alpine/master/builder/scripts/mkimage-alpine.bash && \
|
|
chmod +x \
|
|
/mkimage-alpine.bash
|
|
|
|
WORKDIR /mnt
|
|
VOLUME /mnt
|