Skip to content

Instantly share code, notes, and snippets.

@oieioi
Last active April 18, 2019 05:06
Show Gist options
  • Save oieioi/bf9b26a08f54a790d4e84c46f0c3e1f7 to your computer and use it in GitHub Desktop.
Save oieioi/bf9b26a08f54a790d4e84c46f0c3e1f7 to your computer and use it in GitHub Desktop.
CircleCI の ruby:2.5.3-node-browser で日本語表示できるようにするやつ
FROM circleci/ruby:2.5.3-node-browsers
RUN sudo apt-get update && sudo apt-get install -y locales locales-all
RUN sudo update-locale LANG=ja_JP.UTF-8 LANGUAGE="ja_JP:ja"
RUN . /etc/default/locale
RUN sudo apt-get install fonts-ipafont-gothic fonts-ipafont-mincho
RUN sudo fc-cache -fv;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment