Skip to content

Commit

Permalink
Add base image for other python versions (adap#2700)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Steiner authored Dec 11, 2023
1 parent 1804a6a commit 6f67e7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ name: Build docker base image
on:
push:
branches: ["main"]
paths: ["src/docker/base/**"]
paths:
- "src/docker/base/**"
- ".github/workflows/docker-base.yml"
# re-run if something chnages in the bootstrap action (e.g. version of the dependencies)
- ".github/actions/bootstrap/action.yml"
- ".github/workflows/_docker-build.yml"

permissions:
contents: read
Expand Down Expand Up @@ -40,7 +45,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [3.11]
python-version: [3.8, 3.9, 3.10, 3.11]
with:
namespace-repository: flwr/base
file-dir: src/docker/base
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}

summary:
name: Summary
name: Build images
runs-on: ubuntu-22.04
needs: build-server-images
timeout-minutes: 10
Expand Down

0 comments on commit 6f67e7b

Please sign in to comment.