mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
a9164b6a71
Signed-off-by: Jess Frazelle <jess@oxide.computer>
28 lines
724 B
Docker
28 lines
724 B
Docker
FROM debian:sid-slim
|
|
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" ]
|