Skip to content

Add bash-completion apt package (#25) #9

Add bash-completion apt package (#25)

Add bash-completion apt package (#25) #9

name: "Build and push container image"
on:
push:
branches:
- "main"
paths:
- "docker/*"
- ".github/workflows/build-and-publish-docker-image.yml"
permissions:
contents: "read"
packages: "write"
attestations: "write"
id-token: "write"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: false
jobs:
build-and-push:
runs-on: "ubuntu-latest"
steps:
# For biggish images, github actions runs out of disk space.
# So we cleanup some unwanted things in the disk image, and reclaim that space for our docker use
# https://github.com/actions/virtual-environments/issues/2606#issuecomment-772683150
# and https://github.com/easimon/maximize-build-space/blob/b4d02c14493a9653fe7af06cc89ca5298071c66e/action.yml#L104
# This gives us a total of about 52G of free space, which should be enough for now
- name: "Cleanup disk space"
run: |
sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
df -h
- name: "Checkout files in repo"
uses: "actions/checkout@v5"
- name: "Build and push the image"
uses: "jupyterhub/repo2docker-action@master"
with:
REPO2DOCKER_EXTRA_ARGS: "--subdir docker"
DOCKER_USERNAME: "${{ github.repository_owner }}"
DOCKER_PASSWORD: "${{ secrets.GITHUB_TOKEN }}"
DOCKER_REGISTRY: "ghcr.io"
# Disable pushing a 'latest' tag, as this often just causes confusion
# LATEST_TAG_OFF: true
IMAGE_NAME: "geojupyter/workshop-open-source-geospatial"
# Put repo contents in /srv/repo, so they aren't mangled when we put user home in /home/jovyan
REPO_DIR: "/srv/repo"
# Fix man pages that are disabled by Ubuntu 18 minimal base image
# APPENDIX_FILE: "appendix"
# Lets us monitor disks getting full as images get bigger over time
- name: "Show how much disk space is left"
run: "df -h"