Skip to content

Add default user damyan to the base container #12

Add default user damyan to the base container

Add default user damyan to the base container #12

name: Build and Publish Base Docker Image
env:
platforms: linux/amd64,linux/arm64
on:
push:
branches:
- main
tags:
- v*
paths:
- 'base/Dockerfile'
pull_request_target:
paths:
- 'base/Dockerfile'
jobs:
buildAndPush:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: docker/metadata-action@v4
id: meta
with:
images: |
ghcr.io/${{ github.repository_owner }}/sak-base
tags: |
type=semver,pattern={{version}}
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
flavor: |
latest=auto
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
image: tonistiigi/binfmt:latest
platforms: ${{env.platforms}}
# workaround for self-hosted runner
# https://github.com/mumoshu/actions-runner-controller-ci/commit/e91c8c0f6ca82aa7618010c6d2f417aa46c4a4bf
- name: Set up Docker Context for Buildx
id: buildx-context
run: |
docker context create builders
- name: Set up Docker Buildx
timeout-minutes: 5
uses: docker/setup-buildx-action@v2
with:
version: latest
endpoint: builders # self-hosted
- name: Login to GHCR
if: github.event_name != 'pull_request_target'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
timeout-minutes: 100
uses: docker/build-push-action@v4
with:
context: base
platforms: ${{env.platforms}}
push: ${{ github.event_name != 'pull_request_target' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
secrets: |
"github_pat=${{ secrets.GITHUB_TOKEN }}"