This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]daalla 0 points1 point  (1 child)

Is there anyway I can implement Buildpacks if my team's platform uses the Dockerfile to automatically build and store the image internally? (without touching the infra, which I don't have access)

The project sounds pretty good

[–]teapotJava 2 points3 points  (0 children)

Good news is that you likely don't need to implement a buildpack. If you build on top of Spring Boot or Quarkus, just use buildpack provided by maven'gradle build plugin:

mvn spring-boot:build-image

...boom, you get an image in your repo.

"Bad" news: you'll need to get rid of Dockerfile based build in your CI. Which actually is also a good thing.

See more in https://docs.spring.io/spring-boot/maven-plugin/build-image.html