can someone help with how to add a file system folder into a docker image... e.g. I want to add /opt/app/conf into the docker image at path /opt/docker/conf. A snippet of the build.sbt is as follows:
dockerCommands :=
dockerCommands.value.flatMap {
case cmd@Cmd("FROM", ) => List(cmd, Cmd("RUN", "apk add --no-cache bash"))
case ExecCmd("ENTRYPOINT", args @ *) => Seq(Cmd("ENTRYPOINT", args.mkString(" ")))
case v => Seq(v)
},