cool-easter-32542
04/22/2024, 4:11 PM--from field of a docker COPY statement. Something like this:
docker_image(
name="deps",
...
)
docker_image(
...
instructions=[
...
"COPY --from=:deps /bin/app /bin/app",
...
],
)
where :deps in --from=:deps references the previous deps stage.
Unfortunately, this doesn't seem to work right now.
Any tips / workarounds?
pantsbuild/pants