Skip to content

docs: Describe DATA_DIR in readme and mention docker hub image #36

docs: Describe DATA_DIR in readme and mention docker hub image

docs: Describe DATA_DIR in readme and mention docker hub image #36

name: Build & Push Docker Image
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
# No checkout step here because build-push-action uses git context by default:
# https://github.com/marketplace/actions/build-and-push-docker-images#git-context
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/arm64
push: true
tags: kinkard/prospero:latest
cache-from: type=gha
cache-to: type=gha,mode=max