Skip to content

changed dockerhub repo, pinned jupyterhub-singleuser #1

changed dockerhub repo, pinned jupyterhub-singleuser

changed dockerhub repo, pinned jupyterhub-singleuser #1

Workflow file for this run

name: BuildAndTest
on:
pull_request:
branches:
- main
paths-ignore:
- 'LICENSE'
- 'README.md'
- '.gitignore'
env:
DOCKER_IMAGE: "paulkm/uwgda-image-2025"
jobs:
build-image-without-pushing:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v3
- name: Build Only
uses: jupyterhub/repo2docker-action@master
with:
NO_PUSH: 'true'
IMAGE_NAME: ${{ env.DOCKER_IMAGE }}
- name: Report Image Size and Conda Packages
run: |
docker images
docker run ${{ env.DOCKER_IMAGE }}:latest conda list --export
docker run ${{ env.DOCKER_IMAGE }}:latest conda list --explicit > conda-linux-64.lock
- name: Save package list
uses: actions/upload-artifact@v4
with:
name: lockfile
path: conda-linux-64.lock
- name: Commit lockfile
uses: EndBug/add-and-commit@v7
with:
default_author: github_actions
message: "add conda-lock package list"
add: conda-linux-64.lock