Skip to content

Commit

Permalink
ci: Bump runtime image to bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
emgrav committed Jul 12, 2024
1 parent 1bca21c commit d787d08
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/docker-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,32 @@ on:
required: false
type: string
default: famedly-ci
# Github Actions workflow inputs can't be lists, so this is probably the least bad way of doing this currently
build_amd64:
required: false
type: boolean
default: true
build_armv8:
required: false
type: boolean
default: false
env:
RUSTC_WRAPPER: cachepot
REGISTRY_SNAPSHOTS: docker-nightly.nexus.famedly.de
REGISTRY_RELEASES: docker-releases.nexus.famedly.de
REGISTRY_OSS: docker-oss.nexus.famedly.de

jobs:
determine_platforms:
steps:


docker:
runs-on: ubuntu-latest-16core
strategy:
matrix:
platform: [amd64, armv8]
runs-on: {{ }}
needs: [determine_platforms]
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim
CMD ["/usr/local/bin/bash"]
2 changes: 1 addition & 1 deletion subfolder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim
CMD ["/usr/local/bin/bash"]
2 changes: 1 addition & 1 deletion subfolder/subsubfolder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim
CMD ["/usr/local/bin/bash"]

0 comments on commit d787d08

Please sign in to comment.