Dockerfile improvement #59
Workflow file for this run
This file contains hidden or 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: Full checkup for SimpleRisk Docker images | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| simplerisk-jammy: | |
| name: 'Verify simplerisk/simplerisk image based on Ubuntu 22.04 (Jammy)' | |
| uses: ./.github/workflows/verify-image_rw.yml | |
| with: | |
| context_path: "simplerisk/" | |
| dockerfile_path: "simplerisk/Dockerfile" | |
| image_tag: "simplerisk/simplerisk:testing" | |
| build_args: "ubuntu_version_code=jammy" | |
| simplerisk-noble: | |
| name: 'Verify simplerisk/simplerisk image based on Ubuntu 24.04 (Noble)' | |
| uses: ./.github/workflows/verify-image_rw.yml | |
| with: | |
| context_path: "simplerisk/" | |
| dockerfile_path: "simplerisk/Dockerfile" | |
| image_tag: "simplerisk/simplerisk:testing" | |
| build_args: "ubuntu_version_code=noble" | |
| simplerisk-minimal-php81: | |
| name: 'Verify simplerisk/simplerisk-minimal image based on PHP 8.1 with Apache' | |
| uses: ./.github/workflows/verify-image_rw.yml | |
| with: | |
| context_path: "simplerisk-minimal/" | |
| dockerfile_path: "simplerisk-minimal/Dockerfile" | |
| image_tag: "simplerisk/simplerisk-minimal:testing" | |
| build_args: "php_version=8.1" | |
| simplerisk-minimal-php83: | |
| name: 'Verify simplerisk/simplerisk-minimal image based on PHP 8.3 with Apache' | |
| uses: ./.github/workflows/verify-image_rw.yml | |
| with: | |
| context_path: "simplerisk-minimal/" | |
| dockerfile_path: "simplerisk-minimal/Dockerfile" | |
| image_tag: "simplerisk/simplerisk-minimal:testing" | |
| build_args: "php_version=8.3" |