Is there a general list of the packages needed for a docker 64-bit ubuntu 16.04 container to run 32-bit applications?
I've seen people mentioning ia32-libs
here and here. Also some others suggested to add to a docker file these:
RUN dpkg --add-architecture i386
RUN apt-get update
RUN apt-get install -y libc6:i386 libncurses5:i386 libstdc++6:i386 zlib1g:i386
Is there a more general rule or list of packages usually needed?