FROM docker.io/ubuntu:18.04 # TODO multi-stage build to remove installer COPY ./devolo-cockpit-v5-1-6-2-linux.run /devolo-cockpit-setup RUN dpkg --add-architecture i386 \ && apt-get update \ && apt-get install --no-install-recommends --yes lzma xz-utils \ && DEBIAN_FRONTEND=noninteractive /devolo-cockpit-setup \ && apt-get purge --autoremove --yes xz-utils \ && dpkg --listfiles devolo-dlan-cockpit \ && rm -rf /devolo-cockpit-setup /var/lib/apt/lists/* \ && rm /etc/apt/sources.list.d/devolo-updates.list #RUN apt-get update \ # && apt-get install --no-install-recommends --yes strace \ # && rm -rf /var/lib/apt/lists/* # gui: strace -e trace=!recvmsg,poll,futex,mprotect,semop,writev -f /opt/devolo/dlancockpit/bin/dlancockpit-run.sh CMD ["/usr/bin/devolonetsvc"] #CMD ["strace", "-e", "trace=!_newselect,clock_gettime", "-f", "/usr/bin/devolonetsvc"]