Skip to content

Commit

Permalink
add github action build docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy60504 committed Nov 4, 2024
1 parent 0b3b682 commit 6f8736a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/docker_image_TTSAM.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Docker Image TTSAM Realtime

on:
push:
paths:
- '.github/workflows/docker_image_TTSAM.yml'
- 'docker/Dockerfile'
- 'docker/requirements.txt'
- 'docker/conda_requirements.txt'

env:
DOCKER_REPO: seisblue/ttsam-realtime

jobs:
Build_Docker_Image:
runs-on: ubuntu-latest
steps:
- name: Checkout
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: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_REPO }}
tags: |
type=raw,value={{date 'YYYYMMDD'}},latest
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
with:
context:
push: ${{ github.event_name != 'pull_request' }}
file: docker/Dockerfile
tags: ${{ steps.meta.outputs.tags }}, ${{ env.DOCKER_REPO }}:${{ github.sha }}
1 change: 1 addition & 0 deletions docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ mlflow
numexpr>=2.8.4
numpy
obspy
paho-mqtt
pandas
plotly
scikit-learn
Expand Down

0 comments on commit 6f8736a

Please sign in to comment.