반응형
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
반응형
'programing' 카테고리의 다른 글
'id에 할당 (0) | 2020.10.14 |
---|---|
C # 속성은 실제로 메서드입니까? (0) | 2020.10.14 |
실행중인 PowerShell 스크립트에서 모든 환경 변수 표시 (0) | 2020.10.14 |
PreparedStatement setNull (..) (0) | 2020.10.14 |
추상 클래스는 언제 사용합니까? (0) | 2020.10.14 |