Skip to content

Commit

Permalink
From bullseye to bookworm (#21)
Browse files Browse the repository at this point in the history
* Change Dockerfile to bookworm-slim

* Update test when Dockerfile changes

* Update build when Dockerfile changes

* Remove apostrophe of Dockerfile in test
  • Loading branch information
ononoki1 authored May 26, 2022
1 parent d020538 commit f6d3dff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ on:
- cron: '0 * * * *'
push:
branches: [ main ]
paths: [ '**.sh' ]
paths:
- '**.sh'
- Dockerfile
workflow_dispatch:
jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: test
on:
push:
branches-ignore: [ main ]
paths: [ '**.sh' ]
paths:
- '**.sh'
- Dockerfile
workflow_dispatch:
jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM debian:bullseye
FROM debian:bookworm-slim
COPY build.sh /build.sh
ENTRYPOINT ["bash", "/build.sh"]

0 comments on commit f6d3dff

Please sign in to comment.