[FIX] update Pillow version in requirements to resolve dependabot alerts #10
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, test and push docker CI | |
on: | |
push: | |
branches: [ 'master' ] | |
jobs: | |
build-focal: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout TrackDLO repository | |
uses: actions/checkout@v3 | |
- name: Build, test, push base docker (Ubuntu 20.04) | |
run: cd docker && docker build -t rmdlo-trackdlo:noetic -f Dockerfile.noetic .. | |
build-jammy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout TrackDLO repository | |
uses: actions/checkout@v3 | |
- name: Build, test, push base docker (Ubuntu 20.04) | |
run: cd docker && docker build -t rmdlo-trackdlo:noetic -f Dockerfile.noetic .. |