programing

docker ubuntu / bin / sh : 1 : locale-gen : 찾을 수 없음

nasanasas 2020. 10. 14. 07:53
반응형

docker ubuntu / bin / sh : 1 : locale-gen : 찾을 수 없음


아래의 로케일 설정 코드를 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

어떤 생각?


의견 주셔서 감사 합니다, edwinksl . locale-gen 오류를 해결 한 아래의 dockerfile을 업데이트했습니다.

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

참고 URL : https://stackoverflow.com/questions/39760663/docker-ubuntu-bin-sh-1-locale-gen-not-found

반응형