मैंने अपने dockerfile में नीचे लोकेल सेटिंग कोड्स डाल दिए,
FROM node:4-onbuild
# Set the locale
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
लेकिन यह मुझे त्रुटि देता है
/bin/sh: 1: locale-gen: not found
The command '/bin/sh -c locale-gen en_US.UTF-8' returned a non-zero code: 127
कोई उपाय?
locales
उपयोग करके इंस्टॉल करना होगाsudo apt-get -y install locales
?