Skip to content

Commit

Permalink
Merge pull request #7 from szaimen/master
Browse files Browse the repository at this point in the history
Create docker-build.yml
  • Loading branch information
matiasdelellis authored Jan 3, 2024
2 parents 324b9eb + 9fe7e40 commit 075898c
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Docker Build and Publish

on:
workflow_dispatch:
inputs:
tagName:
description: "Tag name"
required: true
default: 'v1'

jobs:
push_to_registry:
runs-on: ubuntu-latest

name: Build docker image and push to dockerhub

steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build container image
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
context: './'
no-cache: true
file: 'Dockerfile'
tags: matiasdelellis/facerecognition-external-model:${{ github.event.inputs.tagName }}
provenance: false

0 comments on commit 075898c

Please sign in to comment.