Skip to content

Commit

Permalink
Create docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pluja committed Aug 26, 2023
1 parent a3543ee commit be5973b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Docker Image CI

on:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest

strategy:
matrix:
directory: ['backend', 'frontend', 'transcription-api']

steps:
- name: Checkout
uses: actions/checkout@v2

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

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

- name: Build and push Docker images
uses: docker/build-push-action@v2
with:
context: ${{ matrix.directory }}
file: ${{ matrix.directory }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ format('{0}/{1}:latest', secrets.DOCKERHUB_USERNAME, matrix.directory) }}

0 comments on commit be5973b

Please sign in to comment.