picons-builder/Dockerfile_builder
2018-06-15 20:23:23 +01:00

29 lines
381 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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/"]