31 lines
871 B
YAML
31 lines
871 B
YAML
name: Build Docker Container
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
dockerfile:
|
|
description: 'The dockerfile to build'
|
|
required: false
|
|
type: string
|
|
default: './Dockerfile'
|
|
context:
|
|
description: 'The build context'
|
|
required: false
|
|
type: string
|
|
default: './'
|
|
tag:
|
|
description: 'The tag to apply to the built image'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build-go:
|
|
runs-on: docker
|
|
container:
|
|
image: forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/pipeline-container/kaniko:v1.23.2
|
|
steps:
|
|
- name: Clone Repository
|
|
uses: https://forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/DevFW-CICD/checkout@main
|
|
- name: Build Docker Container
|
|
run: |
|
|
/kaniko/executor ${{ inputs.dockerfile }} ${{ inputs.context }} ${{ inputs.tag }}
|