diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index ae53e06..ba52335 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -16,39 +16,14 @@ jobs: - name: build run: docker build -t cml_3.9 -f "pbj-workbench-python3.9-standard.Dockerfile" . + - name: info + run: docker info + - name: ls + run: ls + - name: image ls run: docker image ls + + - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build and export - uses: docker/build-push-action@v6 - with: - tags: cml_3.9:latest - outputs: type=docker,dest=/tmp/myimage.tar - - - name: Upload artifact - uses: actions/upload-artifact@v4 - with: - name: myimage - path: /tmp/myimage.tar - - use: - runs-on: ubuntu-latest - needs: build_cml - steps: - - name: Download artifact - uses: actions/download-artifact@v4 - with: - name: myimage - path: /tmp - - - name: Load image - run: | - docker load --input /tmp/myimage.tar - docker image ls -a - - -