Build Docker Images #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A Github Actions configuration for building Docker images for ManyFEWS | |
name: Build Docker Images | |
on: | |
workflow_run: | |
workflows: [Unit Tests] | |
types: | |
- completed | |
env: | |
DOCKERHUB_REPO: durhamarc/manyfews | |
jobs: | |
docker: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
# https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md#github-cache | |
- | |
name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
# https://stackoverflow.com/questions/59810838/how-to-get-the-short-sha-for-the-github-workflow | |
- | |
name: Add SHORT_SHA env property with commit short sha | |
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Build and push (gunicorn) | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
target: gunicorn | |
tags: ${{ env.DOCKERHUB_REPO }}-gunicorn:latest , ${{ env.DOCKERHUB_REPO }}-gunicorn:${{ env.SHORT_SHA }} | |
cache-from: type=gha,scope=${{ github.workflow }} | |
cache-to: type=gha,scope=${{ github.workflow }},mode=max | |
- | |
name: Build and push (celery) | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
target: celery | |
tags: ${{ env.DOCKERHUB_REPO }}-celery:latest , ${{ env.DOCKERHUB_REPO }}-celery:${{ env.SHORT_SHA }} | |
cache-from: type=gha,scope=${{ github.workflow }} | |
cache-to: type=gha,scope=${{ github.workflow }},mode=max | |
- | |
name: Build and push (nginx) | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
target: web | |
tags: ${{ env.DOCKERHUB_REPO }}-web:latest , ${{ env.DOCKERHUB_REPO }}-web:${{ env.SHORT_SHA }} | |
cache-from: type=gha,scope=${{ github.workflow }} | |
cache-to: type=gha,scope=${{ github.workflow }},mode=max |