From f57ac365b421ec3f0a3d77a51d2fae363569f8d6 Mon Sep 17 00:00:00 2001 From: 502647092 Date: Tue, 11 Sep 2018 20:56:45 +0800 Subject: [PATCH] feat: update Dockerfile --- Dockerfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e3d3078..4545e88 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,15 @@ FROM centos LABEL maintainer="MiaoWoo" -ENV LANG C.UTF-8 +ENV LANG en_US.UTF-8 + +RUN yum install -y fontconfig git nano +RUN git clone https://github.com/powerline/fonts.git --depth=1 && \ + cd fonts && \ + ./install.sh && \ + fc-cache + WORKDIR /root -RUN yum install -y fontconfig ADD main main ADD lib lib