Skip to content

Commit

Permalink
updated debian, added git dependency, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashoechst committed Jul 8, 2024
1 parent 8442606 commit 7ee5838
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
submodules: recursive

- name: Install dependencies
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
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
shell: bash

- name: Run pimod OpenWRT example
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
**/*.img
.cache/
CHANGELOG.md
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The title should be `${VERSION} - ${YYYY-MM-DD}` and the description should contain the section from this `CHANGELOG.md`.

## [Unreleased]

## [0.7.1] - 2024-07-08
### Added
- Building Docker images for linux/arm/v7.
- Configure Renovate for automated updates.
- Installed git in docker container to support git-based versioning

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

[Unreleased]: https://github.com/Nature40/pimod/compare/v0.6.0...HEAD
[Unreleased]: https://github.com/Nature40/pimod/compare/v0.6.1...HEAD
[0.6.1]: https://github.com/Nature40/pimod/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/Nature40/pimod/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/Nature40/pimod/compare/v0.4.4...v0.5.0
[0.4.4]: https://github.com/Nature40/pimod/compare/v0.4.3...v0.4.4
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim

LABEL description="Reconfigure Raspberry Pi images with an easy, Docker-like configuration file"
LABEL maintainer="[email protected]"
LABEL version="0.6.0"
LABEL version="0.6.1"

RUN bash

RUN apt-get update && \
apt-get install -y \
binfmt-support \
fdisk \
file \
git \
kpartx \
lsof \
p7zip-full \
qemu \
qemu-user-static \
unzip \
wget \
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
steps:
- run: sudo apt-get update
shell: bash
- run: sudo apt-get install -y binfmt-support fdisk file kpartx qemu qemu-user-static unzip p7zip-full wget xz-utils units
- run: sudo apt-get install -y binfmt-support fdisk file git kpartx qemu qemu-user-static unzip p7zip-full wget xz-utils units
shell: bash
- run: sudo ${{ github.action_path }}/pimod.sh ${{ inputs.pifile }}
shell: bash
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3'
services:
pimod:
build: .
Expand Down

0 comments on commit 7ee5838

Please sign in to comment.