Is it possible to start a process using RUN command in Dockerfile?
Currently I have a dockerfile that runs two executables using an ampersand: FROM <Linux base image> CMD ["bin/sh", "-c", "/service1 & /service2"] As I am looking to migrate this dockerfile to distroless, I will no longer be able to run…