mirror of
https://github.com/linuxserver/picons-builder.git
synced 2026-02-10 20:43:44 +08:00
29 lines
381 B
Plaintext
29 lines
381 B
Plaintext
FROM alpine:3.7
|
||
MAINTAINER sparklyballs
|
||
|
||
# install packages
|
||
RUN \
|
||
apk add --no-cache \
|
||
bash \
|
||
bzip2 \
|
||
coreutils \
|
||
git \
|
||
gzip \
|
||
imagemagick \
|
||
librsvg \
|
||
pngquant \
|
||
tar \
|
||
util-linux
|
||
|
||
# copy build script
|
||
COPY root/ /
|
||
|
||
# build picons
|
||
RUN \
|
||
mkdir -p \
|
||
/picons \
|
||
/usr/src/temp-output && \
|
||
/bin/bash /build-picons.sh
|
||
|
||
CMD ["cp", "-avr", "/picons/picons.tar.bz2", "/mnt/"]
|