Docker error: rhasspy | bash: error while loading shared libraries: libtinfo.so.6: cannot open shared object file: No such file or directory

I have armv7l architecture
docker-compose up

Starting rhasspy ... done
Attaching to rhasspy
rhasspy    | bash: error while loading shared libraries: libtinfo.so.6: cannot open shared object file: No such file or directory

docker-compose.yaml

rhasspy:
    image: "rhasspy/rhasspy:2.5.1"
    container_name: rhasspy
    restart: always
    volumes:
        - "$HOME/.config/rhasspy/profiles:/profiles"
        - "/etc/localtime:/etc/localtime:ro"
    ports:
        - "12101:12101"
    devices:
        - "/dev/snd:/dev/snd"
    command: --user-profiles /profiles --profile en

docker version

Client: Docker Engine - Community
 Version:           19.03.12
 API version:       1.40
 Go version:        go1.13.10
 Git commit:        48a6621
 Built:             Mon Jun 22 15:56:29 2020
 OS/Arch:           linux/arm
 Experimental:      false

Server: Docker Engine - Community
 Engine:
  Version:          19.03.12
  API version:      1.40 (minimum version 1.12)
  Go version:       go1.13.10
  Git commit:       48a6621
  Built:            Mon Jun 22 15:50:15 2020
  OS/Arch:          linux/arm
  Experimental:     false
 containerd:
  Version:          1.2.13
  GitCommit:        7ad184331fa3e55e52b890ea95e65ba581ae3429
 runc:
  Version:          1.0.0-rc10
  GitCommit:        dc9208a3303feef5b3839f4323d9beb36df0a9dd
 docker-init:
  Version:          0.18.0
  GitCommit:        fec3683

Do you also have this error with a newer version of the Docker image, such as rhasspy/rhasspy:2.5.5?

I tried latest version before I downgraded to 2.5.1 because of this issue
I found website link below saying docker issue, but I’m using pretty new version of docker. Anyway I will try compile my own docker and include libXtst

This issue is very strange
When I pull docker image first time, then rhasspy docker works fine. I’m going inside the container and I find /lib/arm-linux-gnueabihf/libtinfo.so.6
But after running couple days, then suddenly the issue happens again. Recreate container won’t help.
The only solution is to delete docker image and pull a new one. I search and found libtinfo.so.6

find /var/lib/docker/ -name 'libtinfo.so.6'
/var/lib/docker/overlay2/77c9adc1356caae67e234089b40568226d7b0adc2c2dc9a75583abd988037852/diff/usr/lib/arm-linux-gnueabihf/libtinfo.so.6

Why docker run complain this error?