Skip to content
Snippets Groups Projects
Verified Commit a2a234d3 authored by achill (fossdd)'s avatar achill (fossdd) :gay_pride_flag:
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
FROM docker.io/library/alpine:latest
RUN echo $'https://mirror.postmarketos.org/postmarketos/v24.06\n\
https://dl-cdn.alpinelinux.org/alpine/v3.20/main\n\
https://dl-cdn.alpinelinux.org/alpine/v3.20/community' > /etc/apk/repositories
RUN apk add -U --allow-untrusted postmarketos-keys; \
apk upgrade -Ua; \
apk add postmarketos-base
ENTRYPOINT sh
build.sh 0 → 100755
#!/bin/sh
set -e
reg=codeberg.org
tag="$reg"/fossdd/postmarketos
podman build --pull=always . -t $tag
if [ "$1" == "--push" ]; then
podman login $reg
podman push $tag
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment