LoginSignup
0
0

More than 3 years have passed since last update.

Docker memo

Posted at

ロケールを日本語にする

RUN apt-get update && \
    apt-get install -y --no-install-recommends \
        language-pack-ja && \
    apt-get clean && \
    update-locale LANG=ja_JP.UTF-8
ENV LANG=ja_JP.UTF-8
ENV LANGUAGE=ja_JP:ja

--no-install-recommends : 必須ではない関連パッケージは入れない
--git clean: パッケージをインストールするために拾ってきたアーカイブファイル( *.tar.gz とか)を削除

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0