Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
111 views

I've upgraded Ruby from Ruby 3.1.7 to Ruby 3.2.8; after that, I've encountered a situation where my ruby bundle works for the first deployment on Heroku-deployed servers, but all subsequent ...
G987's user avatar
  • 49
Advice
2 votes
4 replies
136 views

I am packaging my Spring Boot App with the Spring Boot gradle plugin. tasks.bootBuildImage { builder.set("paketobuildpacks/builder-jammy-full:latest") imageName.set(devImageName) ...
Janning Vygen's user avatar
0 votes
1 answer
319 views

I have configured POM according to spring boot documentation https://docs.spring.io/spring-boot/how-to/native-image/developing-your-first-application.html GraalVM and native image is installed. Docker ...
Денис Анд's user avatar
2 votes
0 answers
118 views

I have the build.gradle setting plugins { id 'java' id 'org.springframework.boot' version '3.4.4' id 'io.spring.dependency-management' version '1.1.7' } tasks.named("bootBuildImage&...
Huka's user avatar
  • 410
1 vote
0 answers
90 views

I am building a Docker image for my Spring Boot application using spring-boot:build-image, which leverages Paketo Buildpacks. However, I need to define certain directories (e.g., /tmp and /home) as ...
med_alpa's user avatar
  • 329
1 vote
1 answer
119 views

I'm experimenting with CNCF Buildpacks' pack tool to generate container images in BitBucket pipelines but I'm getting the following error: ERROR: failed to build: failed to create 'creator' container: ...
Cody's user avatar
  • 11
0 votes
1 answer
260 views

How to add specific volumes to the image using Paketo and build-pack: Example : <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-...
med_alpa's user avatar
  • 329
0 votes
1 answer
3k views

i have nodejs application running on heroku-22 and i am migrating it to heroku-24 this is buildpack i am using and aptfile ca-certificates fonts-liberation git libappindicator3-1 libasound2 ...
Code Guru's user avatar
  • 15.8k
0 votes
1 answer
321 views

It looks like spring-boot:build-image does not respect the DOCKER_HOST environment variable which is on my host: unix:///run/user/1000/docker.sock Ubuntu Installation Installation of Docker CE ...
D. Kellenberger's user avatar
0 votes
1 answer
93 views

I'm experiencing a behavior I don't understand. Is this a bug or am I on the wrong track? When building a container image with the Spring Boot mvn plugin, I can't contribute custom buildpacks, in a ...
J.S.'s user avatar
  • 65
3 votes
1 answer
163 views

Since some libraries contain licenses that do not allow distribution, customers who want to run our software must get the libraries by themselves and add these to the spring boot application. ...
Benny's user avatar
  • 149
2 votes
2 answers
338 views

I have a functioning spring-boot 3.3.3 service I'm trying to compile in native mode inside a podman container with the command: mvnw clean package -Pnative spring-boot:build-image -Ddocker....
Shine's user avatar
  • 3,818
2 votes
2 answers
1k views

I have the below Dockerfile and part of a customization of the bootBuildImage gradle task. My goal is to build an image that contains curl (and a minimal shell, /bin/sh to execute I think). I use the ...
pleasebenice's user avatar
0 votes
1 answer
842 views

I'm trying to build an ARM image on an amd64 node. This documentation about buildpacks states that I can do it using heroku/builder:24 as the builder image and passing the platform as a parameter --...
uylmz's user avatar
  • 1,580
0 votes
1 answer
100 views

Context I have a pretty basic JHipster-generated application (Spring Boot + React) Node version is v20.15.0, java version is 21. Locally, simply running ./mvnw works, my app starts correctly, I can ...
Eric's user avatar
  • 348
0 votes
0 answers
124 views

I'm moving from a classic jar deployment to a containerized deployment of my java 21 application. For that purpose I like to create my container image with spring-boot-maven-plugin with the goal build-...
Alexander Widera's user avatar
0 votes
1 answer
53 views

We have API for Get a Buildpack, but I cant find download option here Content-Type: application/json { "guid": "fd35633f-5c5c-4e4e-a5a9-0722c970a9d2", "created_at&...
Rohit Bharati's user avatar
0 votes
0 answers
145 views

I have followed different recommendations, here, here , here and here. All are answered with the idea that volume mounting is supported. I run my build in Gitlab, and we have a policy, we do not ...
ielkhalloufi's user avatar
0 votes
1 answer
134 views

I am getting started with kpack and following the tutorial steps listed here Unfortunately Builder resource creation with message message: 'validating buildpack paketo-buildpacks/[email protected]....
user1919511's user avatar
0 votes
0 answers
197 views

We have added a static build step to our Python app which is triggered by npm build We would like to implement this in our Paketo build so that the built client-side assets are available at runtime. ...
Gids's user avatar
  • 752
2 votes
0 answers
105 views

I am using Digitalocean's App Platform to deploy a PHP app. App Platform recommends to use their PHP buildpack to deploy PHP apps. It seems to utilize heroku-buildpack-php for this purpose. Deploy ...
ivoba's user avatar
  • 6,046
0 votes
1 answer
368 views

So I just migrated from Cloud Shell-Google Cloud to build a docker image. What I did and was worked fine is with this simple command: pack build my-app-image --builder gcr.io/buildpacks/builder:v1 --...
Muhammad Ikhwan Perwira's user avatar
-1 votes
1 answer
61 views

I've been trying to generate a Spring Boot image using buildpacks. I generated the project using https://start.spring.io/ with this configuration . I only added a controller to get some response from ...
Federico Nafria's user avatar
0 votes
1 answer
761 views

pack builder suggest reutrns Google: gcr.io/buildpacks/builder:v1 Heroku: heroku/builder:20 Heroku: heroku/builder:22 Paketo Buildpacks: paketobuildpacks/builder-jammy-base Paketo Buildpacks: ...
Aleksander Dorkov's user avatar
0 votes
1 answer
721 views

Hopefully someone can help me here. Locally it all works but when I try running spring boot bootBuildImage in gitlab ci with BP_JVM_JLINK_ENABLED = true it fails with [creator] Expanding to /...
jd1289's user avatar
  • 55
0 votes
1 answer
327 views

With the newly added ability on Java build pack to support monitoring using Opentelemetry javaagent is nice. We have written extensions to this javagent for monitoring our custom libraries - we can ...
naav's user avatar
  • 123
2 votes
2 answers
910 views

I built a SpringBoot application which writes and reads files from a runtimeDir which can be set from the environment: -DruntimeDir=/Users/user/app/runtime On startup, the application wants to setup ...
Ruven's user avatar
  • 31
3 votes
1 answer
477 views

Reproducer After start the project, I can't connect to the container using docker exec -it sb-repro [bash | sh]. The error: OCI runtime exec failed: exec failed: unable to start container process: ...
Roman Q's user avatar
  • 297
0 votes
1 answer
340 views

I have a Nuxt / Vue.js based app (example code here), where I already used Cloud Native Buildpacks to build a container for the Server Side Rendering mode. I'm in the process of migrating to Nuxt 3.x /...
jonashackt's user avatar
  • 14.9k
1 vote
0 answers
295 views

Issue What workflow (automated pipeline) can I use to create a container image from my Spring Boot application for deployment on Kubernetes that utilises the fast startup functionality provided by ...
bitgully's user avatar
0 votes
0 answers
176 views

The issue only occurs on my Mac, a colleague could create the builder without issues on his Linux machine. This is the command line: $ pack builder create builder-jammy-base:first --config ./builder....
Andras Hatvani's user avatar
1 vote
1 answer
432 views

I'm creating a sample buildpack to get familiar with the internals of buildpack. Following the documentation on creating a new buildpack, I got it running but I have some points to get clarified ...
Rashad Sirajudeen's user avatar
1 vote
2 answers
1k views

I am trying to add healthchecks to my Spring Boot application while using Buildpacks as suggested in Spring Boot Build Image with Health Check. My pom.xml configuration: <plugin> <groupId&...
K. Siva Prasad Reddy's user avatar
0 votes
1 answer
325 views

I am trying to push a Laravel application with the CF CLI. I created a new Laravel application, a manifest.yml and tried to deploy it but got the error "Could not open input file: artisan". ...
Skakuz's user avatar
  • 1
0 votes
1 answer
57 views

I am uploading/publishing an ASP.NET Core web app on tanzu platform using below command on powershell command line. cf push -f .\manifest-Dev.yml The manifest-Dev contains these details: But I am ...
Darshan Adakane's user avatar
1 vote
1 answer
681 views

I'm using Gradle bootBuildImage task,but my environment doesn't have access to github. I built a local docker repository. Then pushed paketobuildpacks/builder-jammy-full and paketobuildpacks/run-jammy-...
Rodrick Zadrozny's user avatar
0 votes
1 answer
2k views

I am having problems running a Spring Boot application in Docker compose built with Buildpack. The application got an upgrade from Spring Boot 2.2.4 and Java 8. The old version was packaged in docker ...
DJViking's user avatar
  • 911
0 votes
1 answer
109 views

I have an image built using the Paketo Python Buildpack. It executes the command in the Procfile fine including python dependencies. However, when I exec on to the running instance e.g. using ecs exec ...
Gids's user avatar
  • 752
0 votes
0 answers
98 views

After upgrading my macOS to Sonoma, running the pack build command with Cloud Native Buildpacks started resulting in an error. The command I used is: pack build test --path . --builder ...
afterlifexx's user avatar
1 vote
2 answers
1k views

Trying to build a Spring Boot 3.1.5 container image using mvn spring-boot:build-image within a BitBucket pipeline. It fails with the error: authorization denied by plugin pipelines: -v only supports $...
dbaltor's user avatar
  • 3,573
6 votes
1 answer
5k views

I'm using Spring Boot 3.1.5, Java 21 and maven 3.9.5. I've got the following error when running mvn spring-boot:build-image [INFO] > Pulling builder image 'docker.io/paketobuildpacks/builder:base' ...
dbaltor's user avatar
  • 3,573
2 votes
1 answer
330 views

I'm new to the Buildpacks area, and I want to create a Docker image for my project. My project is written in Java (with the Spring Boot framework), and it also includes a Vue.js project. I'm using ...
mahdi's user avatar
  • 992
1 vote
1 answer
430 views

When I try to build an oci image from an already built self-executing jar file on my local machine using pack build my/image --path target/my-app-0.0.1-SNAPSHOT.jar --builder paketobuildpacks/builder:...
gofrm's user avatar
  • 416
1 vote
1 answer
951 views

I am facing the below error log on Spring Boot application startup. But the application is properly up and running. 2023-09-07T13:06:34,626+0000 [1 1] com.newrelic enter image description here build....
Sahu's user avatar
  • 11
0 votes
1 answer
426 views

I'm trying to create an app image for my laravel 10 app without writing a docker file with buildpack, I've reading the official docs using of paketo and discovered the build code pack build my-app --...
user avatar
0 votes
0 answers
928 views

**i want to use version 11.0.19 present locally instead of downloading from online. So am trying the binding/Dependency Mapping to implement this ** getting below ERROR after executing command ===&...
deepak bolisetti's user avatar
1 vote
1 answer
248 views

I have a go module containing several different "main" packages located in subdirectories cmd/program1/program1.go, cmd/program2/program2.go, and so on. I would like to deploy one of these ...
Alex Flint's user avatar
  • 6,957
0 votes
1 answer
446 views

What I am trying to accomplish I'm trying to get a Spring Boot application running on Cloud Foundry, which also need some things that need to be installed with apt. To install said things, I'm using ...
Puck's user avatar
  • 53
0 votes
1 answer
155 views

I have an automation project where I use jave/maven/gauge. And I want to run it headless on Heroku. But the Gauge framework is not supported by Heroku. So, how can I create buildpack for gauge? Or if ...
erdemkiiliic's user avatar
0 votes
0 answers
625 views

I've been running my containerized Spring Boot app on AWS Elastic Container Service for months without any issues. Yesterday, out of nowhere, newly started containers began to fail due to the memory ...
IggyBlob's user avatar
  • 422

1
2 3 4 5
10