I have a seccomp profile for my Golang app (generated with go2seccomp) to use with Docker but would like not to have to use it on the command line with --security-opt. Is there a way to "integrate" the profile while building the image? One reason is to avoid having an extra file and be able to docker run it directly.
Maybe I'm not understanding how Docker and seccomp work together, or maybe this is just not an available feature.