Bump pillow from 9.0.0 to 10.2.0 #22
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
# NOTE: Will run on all branches, so different branches can override main image | |
# could maybe be fixed with logic to only run on master branch | |
# or to add a tag for branch and/or no tag for main branch | |
name: Build Docker Images for Training | |
on: | |
push: | |
paths: | |
- '.github/workflows/build_image.yaml' | |
- 'Dockerfile' | |
- 'requirements.txt' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
uses: actions/checkout@v2 | |
- | |
name: Branch name | |
run: echo running on branch ${GITHUB_REF##*/} | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Build and push CI/CD Image | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfile | |
push: true | |
tags: etheredgeb/gloves:custom-tensorflow-2.7.0 |