ancient-eve-13947
08/16/2021, 7:26 PMdocker.Image
to just build an image and keep it locally, without pushing it anywhere?
background:
without Pulumi, I first build a temporary image that builds my whole solution and publishes each service therein into a separate output directory; this one is huge and contains sensitive information (the access to our private nuget stream) and should never be pushed anywhere; and then I build the actual runtime images, using the temporary image with, for example, COPY --from=tmpbuilder /output/notifications
.
these should get pushed, obviously.brave-planet-10645
08/16/2021, 8:10 PMskipPush
input you can use https://www.pulumi.com/docs/reference/pkg/docker/image/#skippush_nodejsancient-eve-13947
08/17/2021, 8:41 AM