temp(mpa2065): bring back ipython required packages #187
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-image-mpa2065 | |
on: | |
push: | |
paths: | |
- 'requirements/classes/mpa2065/**' | |
- 'Dockerfile' | |
- 'docker-compose.yml' | |
- 'scripts/**' | |
- '.github/workflows/mpa2065.yml' | |
workflow_dispatch: | |
env: | |
CLASS: mpa2065 | |
TARGET: r_julia | |
SQLITE: false | |
PYTHON_VERSION: "3.9.17" | |
PROJECT_ID: jupyterhub-docker-images | |
REGION: us-east1 | |
GAR_LOCATION: us-east1-docker.pkg.dev/jupyterhub-docker-images/mpa2065 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set Up GCloud | |
uses: google-github-actions/[email protected] | |
with: | |
project_id: ${{ secrets.GCP_PROJECT_ID_JH_DOCKER }} | |
service_account_key: ${{ secrets.GCP_SA_KEY_JH_DOCKER }} | |
export_default_credentials: true | |
- name: Create Julia Environment Files | |
if: env.TARGET == 'r_julia' | |
run: | | |
sudo --preserve-env=CLASS docker compose up julia_build | |
- name: Configure Docker | |
run: gcloud auth configure-docker ${{ env.REGION }}-docker.pkg.dev --quiet | |
- name: Build and Push JH Image | |
run: | | |
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose up jh_image | |
docker tag jupyterhub-docker-images_jh_image:latest ${{ env.GAR_LOCATION}}:${GITHUB_REF##*/} | |
docker tag jupyterhub-docker-images_jh_image:latest ${{ env.GAR_LOCATION}}:latest | |
docker push ${{ env.GAR_LOCATION}}:latest | |
docker push ${{ env.GAR_LOCATION}}:${GITHUB_REF##*/} |