Skip to content

Adding great expectations trino package #34

Adding great expectations trino package

Adding great expectations trino package #34

Workflow file for this run

name: docker_build_server
on:
workflow_dispatch:
push:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# base
- name: Build and push base
uses: docker/build-push-action@v2
with:
context: base/
push: true
tags: |
cityofcapetown/datascience:base-gha
# drivers
- name: Build and push drivers
uses: docker/build-push-action@v2
with:
context: base/drivers/
push: true
tags: |
cityofcapetown/datascience:drivers-gha
# python_minimal
- name: Build and push python_minimal
uses: docker/build-push-action@v2
with:
context: base/drivers/python_minimal
push: true
tags: |
cityofcapetown/datascience:python_minimal-gha
# python
- name: Build and push python
uses: docker/build-push-action@v2
with:
context: base/drivers/python_minimal/python/
push: true
tags: |
cityofcapetown/datascience:python-ghax
- name: Check disk space
run: |
sudo dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -nr | head
df . -h
sudo du /usr/ -hx -d 4 --threshold=1G | sort -hr | head
- name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
echo "some directories deleted"
sudo apt install aptitude -y >/dev/null 2>&1
sudo aptitude purge aria2 ansible azure-cli shellcheck rpm xorriso zsync \
esl-erlang firefox gfortran-8 gfortran-9 google-chrome-stable \
google-cloud-sdk imagemagick \
libmagickcore-dev libmagickwand-dev libmagic-dev ant ant-optional kubectl \
mercurial apt-transport-https mono-complete libmysqlclient \
unixodbc-dev yarn chrpath libssl-dev libxft-dev \
libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev \
snmp pollinate libpq-dev postgresql-client powershell ruby-full \
sphinxsearch subversion mongodb-org azure-cli microsoft-edge-stable \
-y -f >/dev/null 2>&1
sudo aptitude purge google-cloud-sdk -f -y >/dev/null 2>&1
sudo aptitude purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo apt purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo aptitude purge '~n ^mysql' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^php' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^dotnet' -f -y >/dev/null 2>&1
sudo apt-get autoremove -y >/dev/null 2>&1
sudo apt-get autoclean -y >/dev/null 2>&1
echo "some packages purged"
# jupyter-k8s
- name: Build and push jupyter-k8s
uses: docker/build-push-action@v2
with:
context: base/drivers/python_minimal/python/jupyter-k8s/
push: true
tags: |
cityofcapetown/datascience:jupyter-k8s-gha