I have a build process that builds some js with webpack (outside of my image), which I'd like to copy into the arm image.
How can I do this?
I see there are options for copying out of the image after commands has run (copy_artifact_path and copy_artifact_dest), but I don't see any options for copying things (other than the repo itself) into the image. And I don't see a way to do so from within commands either, since that runs in the image, and I don't know how to copy from outside the image into the image from there.
I have a build process that builds some js with webpack (outside of my image), which I'd like to copy into the arm image.
How can I do this?
I see there are options for copying out of the image after
commandshas run (copy_artifact_path and copy_artifact_dest), but I don't see any options for copying things (other than the repo itself) into the image. And I don't see a way to do so from withincommandseither, since that runs in the image, and I don't know how to copy from outside the image into the image from there.