Skip to content

Update sandbox image to use GDAL 3.8.5 with Python 3.10, added and up… #68

Update sandbox image to use GDAL 3.8.5 with Python 3.10, added and up…

Update sandbox image to use GDAL 3.8.5 with Python 3.10, added and up… #68

name : Test and Push
env:
IMAGE_NAME: digitalearthafrica/deafrica-sandbox
on:
pull_request:
push:
branches:
- main
release:
types:
- created
jobs:
buildpush:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
# Set up a cache
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Get Cache Docker layers
uses: pat-s/[email protected]
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: deafricadockersvs
password: ${{ secrets.DEAFRICA_DOCKER_PASSWORD }}
- name: Build and Push Docker
uses: docker/build-push-action@v2
with:
context: docker
cache-from: |
type=local,src=/tmp/.buildx-cache
cache-to: |
type=local,dest=/tmp/.buildx-cache-new
push: true
tags: ${{ env.IMAGE_NAME }}:latest
- name: Build and Push Docker
uses: docker/build-push-action@v2
with:
build-args: |
WITH_SUDO=yes
context: docker
cache-from: |
type=local,src=/tmp/.buildx-cache
cache-to: |
type=local,dest=/tmp/.buildx-cache-new
push: true
tags: ${{ env.IMAGE_NAME }}:sudo-latest
- name: Get tag for this build if it exists
if: github.event_name == 'release'
run: |
echo "RELEASE=${GITHUB_REF/refs\/tags\/}" >> $GITHUB_ENV
- name: Build and Push Docker
uses: docker/build-push-action@v2
if: github.event_name == 'release'
with:
context: docker
cache-from: |
type=local,src=/tmp/.buildx-cache
cache-to: |
type=local,dest=/tmp/.buildx-cache-new
push: true
tags: ${{ env.IMAGE_NAME }}:${{ env.RELEASE }}
- name: Build and Push Docker
uses: docker/build-push-action@v2
if: github.event_name == 'release'
with:
build-args: |
WITH_SUDO=yes
context: docker
cache-from: |
type=local,src=/tmp/.buildx-cache
cache-to: |
type=local,dest=/tmp/.buildx-cache-new
push: true
tags: ${{ env.IMAGE_NAME }}:sudo-${{ env.RELEASE }}
# This ugly bit is necessary if you don't want your cache to grow forever
# till it hits GitHub's limit of 5GB.
# 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