132 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
776
views
Build and push an image using Kaniko in a GitHub Actions workflow
I want to build and push an image to ACR using GH Actions with self-hosted runners in AKS.
After some research I found out that using Docker is not a way of doing this in the context of Kubernetes so ...
1
vote
1
answer
137
views
Docker - Can't pull fsLayers - failing Clair Scan
dbdr-publish:
stage: publish
extends: .rules
image: registry.aws.site.mycompany.com:443/dx/containers/build-image:latest
script:
- >
kaniko
--context $...
1
vote
0
answers
335
views
How to use an SSH key inside a build (Kaniko) in GitLab CI?
Please help. I'm trying to install composer dependencies in build_fpm, namely private modules (repositories).
I need composer to find the key for SSH authorization.
Here is my gitlab-ci.yaml
stages:
...
2
votes
1
answer
343
views
KeyError: 'Name' in pipenv/vendor/importlib_metadata/_adapters.py:54 using pipenv
I got this weird error in my CI/CD pipeline running in GCP Cloud build.
Package installation failed... KeyError: 'Name' site-packages/pipenv/vendor/importlib_metadata/_adapters.py:54 everything is ...
1
vote
2
answers
260
views
How to integrate gitlab cicd, kankio-executor and ssh keys to build an image using Dockerfile
I want to build my golang project image using git cicd and kankio.
The problem is my golang project has some private git repo dependencies which require ssh key during go mod download or go build.
...
1
vote
0
answers
197
views
Docker file takes 6 minutes to build, not sure why
Here's my dockerfile:
FROM node:22.7.0
# Set environment variables early
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
CHROME_PATH="/usr/bin/google-chrome"
# Install dependencies in one ...
1
vote
0
answers
171
views
Maven plugin to build Docker images with a multi staged Dockerfile
How can I build a Docker image that is based on a multi-staged build process?
I know that Kaniko can perform the job. How can I use that from within a Maven file?
Q2: Paketo build are getting more ...
0
votes
1
answer
102
views
Setup kaniko config.yml file
I am executing a Jenkins pipeline on a k8s based Jenkins server which has Kaniko pre-installed.
I would like to build a docker image of my application on this Jenkins server and push my image to ...
1
vote
0
answers
239
views
Kaniko with Tekton Pipeline: Nexus Registry Push Error "404 Not Found"
I work at a corporate company where our network is intranet-based. We are using Nexus as our Docker registry and I am writing a pipeline in Tekton. In the pipeline, I am using Kaniko and have created ...
1
vote
0
answers
152
views
Docker buildx --build-context equivalent for Kaniko
I need to build an image with Kaniko from a Dockerfile however I need to override the "FROM" instruction. This is possible with docker buildx or buildah via the --build-context option.
Is ...
0
votes
1
answer
635
views
Building a Image by using kaniko and trying to push to docker regsitry
Action Point : I have to build the image and push to docker registry with the help Kaniko executor.
I am using self hosted github runner.
Steps: First I tried to set up docker configuration
name: Set ...
1
vote
0
answers
778
views
Pushing Image built by Kaniko to ECR
I am running a service in AWS ECS. From inside the container, I am trying to build and push a new image (using Kaniko) to ECR but I am facing the following error every time:
error checking push ...
0
votes
1
answer
324
views
What would be the ideal solution for this problem?
I want to create a CI/CD pipeline where
The developer pushes his code to the Github repo.
Github action runs the unit tests, and upon the passing of all the tests, it lets you merge the PR.
On K8s ...
0
votes
1
answer
222
views
How to run kaniko inside a container without k8s in jenkins?
I have a public repository which contains an Angular-App and i tried to build a CI/CD pipeline using jenkins for this app. You can find the full code of .jenkinsfile file in this link.
As you can see, ...
Jeff's user avatar
- 8,548
1
vote
1
answer
1k
views
Kaniko not able to auth against Nexus OSS
We're facing an issue where we cannot push docker images to our nexus registry using kaniko. Below I provided a minimal Repro as well as we're using Nexus OSS 3.49.0-02.
It results in a 404 using a ...