dockerfiles/fontpatcher/Dockerfile
Michael 7eea00edf3 Replaced deprecated MAINTAINER with LABEL (#242)
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-09 10:14:37 -08:00

28 lines
723 B
Docker

FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
python-fontforge \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN buildDeps=' \
ca-certificates \
git \
' \
set -x \
&& apt-get update \
&& apt-get install -y $buildDeps --no-install-recommends \
&& git clone --depth 1 --branch develop https://github.com/Lokaltog/vim-powerline.git /pwrline \
&& ( \
cd /pwrline \
&& mv fontpatcher/fontpatcher /usr/bin/ \
&& mv fontpatcher/PowerlineSymbols.sfd /usr/bin/ \
) \
&& rm -rf /pwrline \
&& apt-get purge -y --auto-remove $buildDeps \
&& rm -rf /var/lib/apt/lists/* \
&& echo "Build complete."
ENTRYPOINT [ "fontpatcher" ]