-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add install instructions for other OSs
* Linux updated to include debian/ubuntu packages * Windows via WSL * Mac via docker
- Loading branch information
Showing
2 changed files
with
45 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM debian:bookworm | ||
|
||
# Install requirments | ||
RUN apt update && apt install -y wget parted gzip pigz xz-utils udev e2fsprogs && apt clean | ||
|
||
# Setup Env | ||
ENV LANG=C.UTF-8 | ||
ENV TERM=xterm-256color | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
WORKDIR /workdir | ||
|
||
# Copy pishrink in | ||
COPY pishrink.sh /usr/local/bin/pishrink | ||
RUN chmod +x /usr/local/bin/pishrink | ||
ENTRYPOINT [ "/usr/local/bin/pishrink" ] |
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