Some checks failed
Build and Push Docker Image / build (push) Failing after 0s
The Kaniko executor image doesn't have traditional user management and runs with appropriate permissions by default. Fixes: unable to find user root: no matching entries in passwd file 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
969 B
YAML
32 lines
969 B
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: gcr.io/kaniko-project/executor:debug
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Prepare Kaniko config
|
|
run: |
|
|
mkdir -p /kaniko/.docker
|
|
echo "{\"auths\":{\"code.puffinoffset.com\":{\"auth\":\"$(echo -n "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" | base64)\"}}}" > /kaniko/.docker/config.json
|
|
|
|
- name: Build and push with Kaniko
|
|
run: |
|
|
/kaniko/executor \
|
|
--context=${{ github.workspace }} \
|
|
--dockerfile=${{ github.workspace }}/Dockerfile \
|
|
--destination=code.puffinoffset.com/matt/puffin-app:latest \
|
|
--destination=code.puffinoffset.com/matt/puffin-app:main-${{ github.sha }} \
|
|
--cache=true \
|
|
--cache-repo=code.puffinoffset.com/matt/puffin-app/cache
|