노드JS 이미지는 debian계열이기 때문에, 아래와 같이 dockerfile을 만들게 되면, 한국어를 사용할 수 있음
//debian
FROM node
RUN apt-get update && apt-get install -y locales
RUN localedef -f UTF-8 -i ko_KR ko_KR.UTF-8
ENV LC_ALL ko_KR.UTF-8
우분투는 아래와 같이 설정하면 컨테이너에서 한국어를 사용할 수 있다!
//ubuntu
FROM ubuntu:latest
RUN apt-get update && apt-get install -y locales
RUN locale-gen ko_KR.UTF-8
ENV LC_ALL ko_KR.UTF-8