This file contains hidden or 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
#!/bin/sh | |
set -e | |
# Install Scripts | |
install -v -m 755 umtprd-*.sh /usr/libexec | |
# Install Service | |
install -v -m 755 umtprd /etc/init.d | |
rc-update add umtprd |
This file contains hidden or 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
# Change this when changing the postmarketOS version! | |
FROM arm64v8/alpine:3.18 | |
# The postmarketOS Version | |
ENV PMOS_VERSION="v23.06" | |
# Use postmarketOS | |
RUN \ | |
echo "https://mirror.postmarketos.org/postmarketos/${PMOS_VERSION}" > temp && \ | |
cat /etc/apk/repositories >> temp && \ |
OlderNewer