diff --git a/.github/workflows/build-python-3.10-base-images.yml b/.github/workflows/build-python-3.10-base-images.yml new file mode 100644 index 0000000..6eabf9b --- /dev/null +++ b/.github/workflows/build-python-3.10-base-images.yml @@ -0,0 +1,28 @@ +name: build images python-3.10 + +on: + pull_request: + branches: + - main + paths: + - 'oci/base/python-3.10/Dockerfile' + - '.github/workflows/build-python-3.10-base-images.yml' + workflow_dispatch: + branches: + - main +env: + IMAGE_REPO: "images.onwalk.net" + +jobs: + eslint: + name: Build Docker in Docker image + uses: svc-design/actions/.github/workflows/build-images.yaml@main + with: + method: 'docker/node' + registry_addr: ${{ env.IMAGE_REPO }} + dockerfile_path: 'oci/base/python-3.10' + image_name: 'public/base/python-3.10' + image_tag: 'latest' + secrets: + artifactory_sa: ${{ secrets.IMAGES_REPO_USER }} + artifactory_pw: ${{ secrets.IMAGES_REPO_PASSWORD }}