Hi,
It looks like there is an issue with the baseimage when running in privileged mode.
here is how you repeat the problem:
root@server:~# docker run -t -i --privileged phusion/baseimage /bin/bash
root@90572e35c84a:/# apt-get update && apt-get install ntp
root@90572e35c84a:/# service ntp start
* Starting NTP server ntpd /usr/sbin/ntpd: error while loading shared libraries: libopts.so.25: cannot open shared object file: Permission denied
the file /usr/lib/x86_64-linux-gnu/libopts.so.25.15.0 is 644 and readable even as ntp user.
if you do the same thing without the privileged mode it works fine.
Anybody having an idea of what could be causing the issue ?
Thanks !