Added workflow for docker build

This commit is contained in:
Chris 2024-02-06 01:31:09 +01:00
parent 87e74c5814
commit 966cb698f8

View File

@ -0,0 +1,24 @@
name: dockerbuild
on:
push:
branches:
- master
jobs:
dockerbuild:
name: Build docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: dev.noccylabs.info/noccylabs/alpine-php83-aio:latest