-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated debian, added git dependency, bump version
- Loading branch information
1 parent
8442606
commit 7ee5838
Showing
6 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
**/*.img | ||
.cache/ | ||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
version: '3' | ||
services: | ||
pimod: | ||
build: . | ||
|