Skip to content

Instantly share code, notes, and snippets.

@yuki-yano
Created August 15, 2016 14:12
Show Gist options
  • Select an option

  • Save yuki-yano/689afff39abc6af61e74bd4a0e515647 to your computer and use it in GitHub Desktop.

Select an option

Save yuki-yano/689afff39abc6af61e74bd4a0e515647 to your computer and use it in GitHub Desktop.
FROM ubuntu:trusty
RUN echo "Asia/Tokyo" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata
RUN apt-get update && apt-get install -y locales
RUN echo ja_JP.UTF-8 UTF-8 >> /etc/locale.gen && locale-gen && update-locale LANG=ja_JP.UTF-8 LANGUAGE="ja_JP:ja"
ENV LANG ja_JP.UTF-8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment