Some checks failed
Build docker container / Build image (push) Failing after 10s
19 lines
380 B
YAML
19 lines
380 B
YAML
name: Build docker container
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Build image
|
|
runs-on: ubuntu
|
|
container:
|
|
image: gcr.io/kaniko-project/executor:debug
|
|
|
|
steps:
|
|
- run: |
|
|
/kaniko/executor \
|
|
--context ${{ github.workspace }} \
|
|
--dockerfile Dockerfile \
|
|
--destination registry/imagen:tag |