Answers:
谢谢您的评论,edwinksl。我更新了下面的dockerfile,解决了locale-gen错误:
FROM node:4-onbuild
# Set the locale
RUN apt-get clean && apt-get update && apt-get install -y locales
RUN locale-gen en_US.UTF-8
RUN
语句,尤其是当它们之间紧密相关时。类似的东西RUN apt-get clean && apt-get -y update && apt-get install -y locales && locale-gen en_US.UTF-8
将创建一个单层而不是三层。
update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
也是有用的askubuntu.com/a/505424/196423
locales
使用安装sudo apt-get -y install locales
?