chore(docker): bump python from 3.11-slim to 3.12-slim in /Docker/pro… #379
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 Development Docker Images | |
on: | |
push: | |
paths-ignore: | |
- "Website/**" | |
- "*.md" | |
pull_request: | |
paths-ignore: | |
- "Website/**" | |
- "*.md" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the base image | |
run: docker compose build base | |
- name: Build the runner image | |
run: docker compose build runner | |
- name: Build the CLI image | |
run: docker compose build cli | |
- name: Build the GUI image | |
run: docker compose build gui |