Skip to content

Commit 7ee5838

Browse files
committed
updated debian, added git dependency, bump version
1 parent 8442606 commit 7ee5838

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
submodules: recursive
1818

1919
- name: Install dependencies
20-
run: sudo apt-get update && sudo apt-get install -y binfmt-support fdisk file kpartx lsof p7zip-full qemu qemu-user-static unzip wget xz-utils units
20+
run: sudo apt-get update && sudo apt-get install -y binfmt-support fdisk file git kpartx lsof p7zip-full qemu qemu-user-static unzip wget xz-utils units
2121
shell: bash
2222

2323
- name: Run pimod OpenWRT example

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
**/*.img
22
.cache/
3+
CHANGELOG.md

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
The title should be `${VERSION} - ${YYYY-MM-DD}` and the description should contain the section from this `CHANGELOG.md`.
1717

1818
## [Unreleased]
19+
20+
## [0.7.1] - 2024-07-08
1921
### Added
2022
- Building Docker images for linux/arm/v7.
2123
- Configure Renovate for automated updates.
24+
- Installed git in docker container to support git-based versioning
2225

2326
### Changed
2427
- Reworked the README to ease readability and understanding of pimod's internals.
@@ -107,7 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107110
### Added
108111
- Initial release of a working version of pimod.
109112

110-
[Unreleased]: https://github.com/Nature40/pimod/compare/v0.6.0...HEAD
113+
[Unreleased]: https://github.com/Nature40/pimod/compare/v0.6.1...HEAD
114+
[0.6.1]: https://github.com/Nature40/pimod/compare/v0.6.0...v0.6.1
111115
[0.6.0]: https://github.com/Nature40/pimod/compare/v0.5.0...v0.6.0
112116
[0.5.0]: https://github.com/Nature40/pimod/compare/v0.4.4...v0.5.0
113117
[0.4.4]: https://github.com/Nature40/pimod/compare/v0.4.3...v0.4.4

Dockerfile

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
FROM debian:bullseye-slim
1+
FROM debian:bookworm-slim
22

33
LABEL description="Reconfigure Raspberry Pi images with an easy, Docker-like configuration file"
44
LABEL maintainer="[email protected]"
5-
LABEL version="0.6.0"
5+
LABEL version="0.6.1"
6+
7+
RUN bash
68

79
RUN apt-get update && \
810
apt-get install -y \
911
binfmt-support \
1012
fdisk \
1113
file \
14+
git \
1215
kpartx \
1316
lsof \
1417
p7zip-full \
15-
qemu \
1618
qemu-user-static \
1719
unzip \
1820
wget \

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
steps:
1515
- run: sudo apt-get update
1616
shell: bash
17-
- run: sudo apt-get install -y binfmt-support fdisk file kpartx qemu qemu-user-static unzip p7zip-full wget xz-utils units
17+
- run: sudo apt-get install -y binfmt-support fdisk file git kpartx qemu qemu-user-static unzip p7zip-full wget xz-utils units
1818
shell: bash
1919
- run: sudo ${{ github.action_path }}/pimod.sh ${{ inputs.pifile }}
2020
shell: bash

docker-compose.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3'
21
services:
32
pimod:
43
build: .

0 commit comments

Comments
 (0)