Skip to content

Commit

Permalink
Merge branch 'main' of github.com:faberf/feature-extraction-server
Browse files Browse the repository at this point in the history
  • Loading branch information
faberf committed May 15, 2024
2 parents f06a83f + f9af8d8 commit 4ffdba1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Docker Images

on:
push:
branches:
- main # Trigger the workflow on push events to the main branch.
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest # The type of runner that the job will run on.

steps:
- name: Checkout code
uses: actions/checkout@v2 # Checks-out your repository under $GITHUB_WORKSPACE

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

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }} # Set in your repo's secrets
password: ${{ secrets.DOCKER_PASSWORD }} # Set in your repo's secrets

- name: Run build script
run: |
bash build_docker.sh

0 comments on commit 4ffdba1

Please sign in to comment.