Skip to content

Updated pip install commands #65

Updated pip install commands

Updated pip install commands #65

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Create and Publish download-aet Docker Image
on:
push:
branches: [main]
defaults:
run:
working-directory: ./tds-examples/python/
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/download-aet
labels: |
org.opencontainers.image.title=Download CMRSET AET
org.opencontainers.image.description=This package will download the CMRSET actual evapotranspiration products from the TERN Data Services Catalogue as Cloud-Optimized GeoTIFF's. Each monthly image (~20 GB) has been divided into 12 smaller tiles (4x3, and less than 4 GB each) in order to make downloading simpler (i.e if your study site fits within one tile you can just download that particular tile). https://portal.tern.org.au/actual-evapotranspiration-australia-cmrset-algorithm/21915
org.opencontainers.image.url=https://portal.tern.org.au/actual-evapotranspiration-australia-cmrset-algorithm/21915
org.opencontainers.image.documentation=https://github.com/ternaustralia/cmrset-examples/tree/main/tds-examples
org.opencontainers.image.source=https://github.com/ternaustralia/cmrset-examples/tree/main/tds-examples/python
org.opencontainers.image.vendor=Terrestrial Ecosystem Research Network (TERN), The Commonwealth Scientific and Industrial Research Organisation (CSIRO)
flavor: |
latest=true
- name: Build and push Docker image
uses: docker/[email protected]
with:
file: tds-examples/python/Dockerfile
context: ./tds-examples/python/
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}