picons-builder/Dockerfile_builder
2017-06-16 19:59:52 +01:00

32 lines
471 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.6
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/community \
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/"]