mirror of
https://github.com/linuxserver/picons-builder.git
synced 2026-02-15 06:49:17 +08:00
32 lines
469 B
Plaintext
32 lines
469 B
Plaintext
FROM alpine:3.4
|
||
MAINTAINER sparklyballs
|
||
|
||
# install packages
|
||
RUN \
|
||
apk add --no-cache \
|
||
bash \
|
||
bzip2 \
|
||
coreutils \
|
||
git \
|
||
gzip \
|
||
imagemagick \
|
||
librsvg \
|
||
tar \
|
||
util-linux && \
|
||
|
||
apk add --no-cache \
|
||
--repository http://nl.alpinelinux.org/alpine/edge/testing \
|
||
pngquant
|
||
|
||
# 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/"]
|