dockerfiles/fontpatcher/Dockerfile
Jess Frazelle 3e0fc7968f
better git clones
Signed-off-by: Jess Frazelle <acidburn@google.com>
2016-12-27 17:04:58 -08:00

28 lines
715 B
Docker

FROM debian:stretch
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" ]