With the latest Dockerfile changes (tag:v.0.10.0-alpha.18), making use of the multi stage builder pattern, it appears that its not possible to shell into the container anymore.
Not sure if there is a way to only COPY a static version of /bin/sh to keep the size low.
In the meantime, I updated my version of the Dockerfile to replace the second FROM instruction (FROM scratch) to FROM busybox.
With the latest Dockerfile changes (tag:v.0.10.0-alpha.18), making use of the multi stage builder pattern, it appears that its not possible to shell into the container anymore.
Not sure if there is a way to only COPY a static version of /bin/sh to keep the size low.
In the meantime, I updated my version of the Dockerfile to replace the second FROM instruction (FROM scratch) to FROM busybox.