#!/bin/sh

set -e
mount --make-rprivate /
umount -l  /proc
mount -t proc proc /proc/
mount -t binfmt_misc none /proc/sys/fs/binfmt_misc/
exec "$@"
