Estou usando a imagem do Docker e estou construindo um dockerfile. O arquivo locale.gen
(de /etc/locale.gen
) contém os comentários #
junto com os idiomas:
ca_ES.UTF-8 UTF-8 # Catalan (Spain)
de_DE.UTF-8 UTF-8 # German (Germany)
el_GR.UTF-8 UTF-8 # Greek (Greece)
en_GB.UTF-8 UTF-8 # English (United Kingdom)
en_NZ.UTF-8 UTF-8 # English (New Zealand)
en_US.UTF-8 UTF-8 # English (United States)
eo UTF-8 # Esperanto
es_AR.UTF-8 UTF-8 # Spanish (Argentina)
es_ES.UTF-8 UTF-8 # Spanish (Spanish)
es_UY.UTF-8 UTF-8 # Spanish (Uruguay)
eu_ES.UTF-8 UTF-8 # Basque (Spain)
fr_FR.UTF-8 UTF-8 # French (France)
it_IT.UTF-8 UTF-8 # Italian (Italy)
ja_JP.UTF-8 UTF-8 # Japanese (Japan)
ka_GE.UTF-8 UTF-8 # Georgian (Georgia)
ko_KR.UTF-8 UTF-8 # Korean (Korea)
mi_NZ.UTF-8 UTF-8 # Maori (New Zealand)
nl_NL.UTF-8 UTF-8 # Dutch (Netherlands)
pt_BR.UTF-8 UTF-8 # Portuguese (Brazil)
pt_PT.UTF-8 UTF-8 # Portuguese (Portugal)
ro_RO.UTF-8 UTF-8 # Romanian (Romania)
ru_RU.UTF-8 UTF-8 # Russian (Russia)
uk_UA.UTF-8 UTF-8 # Ukranian (Ukraine)
xh_ZA.UTF-8 UTF-8 # Xhosa (South Africa)
zh_CN.UTF-8 UTF-8 # Chinese (China)
Se eu executar o comando simple locale-gen
, ele falhará por causa dos comentários, é por isso que tenho que usar a opção awk -F "#" '{print $1}'
, mas ainda falhou.
Veja como fica no dockerfile:
# ?? Setting the system keyboard and language
# ?? A definir o idioma e o teclado do sistema
COPY ./config/languages/locale-minimal.gen /etc/locale.gen
RUN locale-gen | awk -F "#" '{print $1}'
Eu sugiro que você considere alterar seu arquivo Docker para copiar o arquivo de origem e modificá-lo:
Se você não quiser manter uma cópia original em sua instância do Docker, poderá copiá-la e editá-la in situ :