Skip to content

Instantly share code, notes, and snippets.

@goddoe
Last active December 27, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goddoe/7cc4150d8dc9d7c9efe17dfcbadcb3f5 to your computer and use it in GitHub Desktop.
Save goddoe/7cc4150d8dc9d7c9efe17dfcbadcb3f5 to your computer and use it in GitHub Desktop.
Dockerfile for Korean UTF-8 Support
FROM ubuntu:16.04
RUN apt-get clean && apt-get update && apt-get install -y locales
RUN locale-gen ko_KR.UTF-8
ENV LANG ko_KR.UTF-8
ENV LANGUAGE ko_KR.UTF-8
ENV LC_ALL ko_KR.UTF-8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment