Skip to content

Commit 70766df

Browse files
author
Simon Hofmann
committed
Added install script to install additional fonts
1 parent 9f06dd5 commit 70766df

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

Dockerfile.ubuntu.icewm.vnc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ RUN find $INST_SCRIPTS -name '*.sh' -exec chmod a+x {} +
4141
RUN $INST_SCRIPTS/tools.sh
4242
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
4343

44+
### Install custom fonts
45+
RUN $INST_SCRIPTS/install_custom_fonts.sh
46+
4447
### Install xvnc-server & noVNC - HTML5 based VNC viewer
4548
RUN $INST_SCRIPTS/tigervnc.sh
4649
RUN $INST_SCRIPTS/no_vnc.sh

Dockerfile.ubuntu.xfce.vnc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ RUN find $INST_SCRIPTS -name '*.sh' -exec chmod a+x {} +
4141
RUN $INST_SCRIPTS/tools.sh
4242
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
4343

44+
### Install custom fonts
45+
RUN $INST_SCRIPTS/install_custom_fonts.sh
46+
4447
### Install xvnc-server & noVNC - HTML5 based VNC viewer
4548
RUN $INST_SCRIPTS/tigervnc.sh
4649
RUN $INST_SCRIPTS/no_vnc.sh
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
### every exit != 0 fails the script
3+
set -e
4+
5+
echo "Installing ttf-wqy-zenhei"
6+
apt-get install -y ttf-wqy-zenhei

0 commit comments

Comments
 (0)