Does the docker build/push for flytekit-java happe...
# flytekit-java
b
Does the docker build/push for flytekit-java happen in CI? It seems we’re missing the image for 0.3.16. Perhaps due to moving to jib?
s
I believe it's a separate (manual) github workflow
b
@swift-animal-75798 I had another look and now I’m pretty sure pushing got lost on the upgrade to jib. The last docker snapshot image is from June 23th just before the switch. Here are the logs for the push: https://github.com/flyteorg/flytekit-java/runs/7018223140?check_suite_focus=true#step:7:10287 The dockerfile-maven plugin does a push on
mvn deploy
which is run in the Release snapshot with Maven step in the build-snapshot job in the build action. After switching to the jib-maven plugin in https://github.com/flyteorg/flytekit-java/pull/111 the Docker image is still built. I.e. see latest build: https://github.com/flyteorg/flytekit-java/runs/7691970637?check_suite_focus=true#step:7:7260 It looks like t’s not pushed anymore, though.
It seems
jib:dockerBuild
uses the Docker daemon to build, but does not push in contrast to using
jib:build
which also pushes the image.
s
Hey Sören yeah i was looking at that earlier today but didnt have time to test it
👍 1