On my own PC the application runs nice, but when it gets deployed into docker, it fails because of invalid characters.
I am using the ubuntu:lastest
container and python3
, java
and ruby
.
On my own PC the application runs nice, but when it gets deployed into docker, it fails because of invalid characters.
I am using the ubuntu:lastest
container and python3
, java
and ruby
.
You need to set the locale correct.
This is the minimal correct Dockerfile:
The usual docker images don't specify a locales. You see it if you bash into it and execute
locale
:Sources: