Skip to content

remove unused cache from remote image #24

remove unused cache from remote image

remove unused cache from remote image #24

Workflow file for this run

---
name: "Build Docker images"
on:
push:
branches: ['**']
release:
types: [released]
env:
IMAGE_NAME: "${{ secrets.DOCKER_ORG }}/nansat_base"
TAG: "${{ github.ref_type == 'tag' && github.ref_name || 'tmp' }}"
jobs:
build_docker_images:
runs-on: 'ubuntu-20.04'
strategy:
matrix:
version:
- {'python': '3.7', 'latest': false}
- {'python': '3.8', 'latest': false}
- {'python': '3.9', 'latest': false}
- {'python': '3.10', 'latest': false}
- {'python': '3.11', 'latest': true}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-python${{ matrix.version.python }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-python${{ matrix.version.python }}-
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Build docker image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
build-args: 'PYTHON_VERSION=${{ matrix.version.python }}'
push: ${{ github.ref_type == 'tag' }}
tags: |
${{ env.IMAGE_NAME }}:latest-python${{ matrix.version.python }}
${{ env.IMAGE_NAME }}:${{ github.ref_name }}-python${{ matrix.version.python }}
${{ matrix.version.latest && format('{0}:{1}', env.IMAGE_NAME, github.ref_name) || '' }}
${{ matrix.version.latest && format('{0}:latest', env.IMAGE_NAME) || '' }}
cache-from: |
type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
...