You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have a system which is comprised of many (~10) Go executable services. They are all built out of the same repo and we use a compose file for local development. Calling podman-compose up, it appears that the images are built sequentially. Is it possible to enable some sort of parallel build?
The text was updated successfully, but these errors were encountered:
podman build --jobs is used to build multi-stage images like thisDockerfile
FROM busybox
RUN sleep 3
RUN date
RUN touch /foo
FROM busybox
RUN sleep 3
RUN date
RUN touch /foo
FROM scratch
COPY --from=0 /foo /foo-0
COPY --from=1 /foo /foo-1
In addition to this, might be the wrong issue but is related to building in parallel. I wrote my own script to build in parallel using podman build, it works except for when using the --ssh default flag. Podman seems to have trouble using an ssh agent on simultaneous builds getting this error
error serving agent: read unix /var/tmp/.buildah-ssh-sock3872979074/ssh_auth_sock->@: use of closed network connection
Is your feature request related to a problem? Please describe.
I have a system which is comprised of many (~10) Go executable services. They are all built out of the same repo and we use a compose file for local development. Calling podman-compose up, it appears that the images are built sequentially. Is it possible to enable some sort of parallel build?
The text was updated successfully, but these errors were encountered: