Skip to content

Docker Build Alpine Dev #131

Docker Build Alpine Dev

Docker Build Alpine Dev #131

#
# Author: Hari Sekhon
# Date: 2022-01-27 18:55:16 +0000 (Thu, 27 Jan 2022)
#
# vim:ts=2:sts=2:sw=2:et
#
# https://github.com/HariSekhon/Dockerfiles
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/HariSekhon
#
---
name: Docker Build Alpine Dev
on:
push:
branches:
- master
- main
paths:
- alpine-dev/Dockerfile
- .github/workflows/docker_build_alpine_dev.yaml
workflow_dispatch:
schedule:
- cron: '0 0 * * 1'
jobs:
docker_build:
name: Docker Build
# github.event.repository context not available in scheduled workflows
#if: github.event.repository.fork == false
if: |
github.repository_owner == 'HariSekhon' &&
(
github.event_name == 'schedule' ||
(
github.ref_type == 'branch' &&
( github.ref_name == github.event.repository.default_branch || github.ref_name == 'docker' )
)
)
uses: HariSekhon/GitHub-Actions/.github/workflows/docker_build.yaml@master
with:
repo_tags: |
harisekhon/alpine-dev:latest
harisekhon/dev:alpine
ghcr.io/harisekhon/alpine-dev:latest
ghcr.io/harisekhon/dev:alpine
context: alpine-dev
secrets:
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
permissions:
contents: read
packages: write