-
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.
ADDPART appends a partition in the SIZE with a partition type and file system
- Loading branch information
1 parent
b608d15
commit fc81082
Showing
6 changed files
with
71 additions
and
4 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 |
---|---|---|
|
@@ -2,13 +2,14 @@ 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.1" | ||
LABEL version="0.7.0" | ||
|
||
RUN bash | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
binfmt-support \ | ||
exfatprogs \ | ||
fdisk \ | ||
file \ | ||
git \ | ||
|
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
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 |
---|---|---|
|
@@ -44,6 +44,10 @@ PUMP() { | |
: | ||
} | ||
|
||
ADDPART() { | ||
: | ||
} | ||
|
||
# Stage 3x | ||
INSTALL() { | ||
: | ||
|
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