Browse Source

[dockerfile] Add missing apt pacakge `locales`

locale-gen command seems missing since uncertain point for a while:

```
Step 15/33 : RUN locale-gen en_US.UTF-8
 ---> Running in fae073c89c01
 /bin/bash: locale-gen: command not found
 The command '/bin/bash -o pipefail -c locale-gen en_US.UTF-8' returned
 a non-zero code: 127
```

This patch should fix the Docker image build
Peter Dave Hello 4 years ago committed by Jordan Harband
parent
commit
6110d31969
No known key found for this signature in database
GPG Key ID: 9F6A681E35EF8B56
  1. 1
      Dockerfile

1
Dockerfile

@ -43,6 +43,7 @@ RUN apt update && \ @@ -43,6 +43,7 @@ RUN apt update && \
file \
openssl \
libssl-dev \
locales \
ca-certificates \
ssh \
wget \

Loading…
Cancel
Save