Skip to content

feat: update SOIT to use PIPX and an independent Dockerfile #6

feat: update SOIT to use PIPX and an independent Dockerfile

feat: update SOIT to use PIPX and an independent Dockerfile #6

# from https://docs.github.com/en/actions/guides/publishing-docker-images
name: Build and PushContainer - SOIT
on:
push:
branches:
- 'main'
tags:
- 'v*.*.*'
pull_request:
branches:
- 'main'
env:
REGISTRY: hub.docker.com
IMAGE_NAME: brownccv/icefloetracker-soit
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- 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: Log in to the Container registry
uses: docker/login-action@v3
with:
username: ccvbot
password: ${{ secrets.CCVBOT_DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
file: soit.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}