Created initial PKGBUILD and Dockerfile

- Update `bin/compile.sh` to generate sha256sums from binaries
This commit is contained in:
David Allen 2023-10-07 13:42:59 -06:00
parent ef1749a1f8
commit ce5f0aaa63
3 changed files with 40 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM cgr.dev/chainguard/wolfi-base
RUN apk add --no-cache tini
USER 65534:65534
COPY build/gdpm.static /gdpm
CMD ["/gdpm"]
ENTRYPOINT [ "/sbin/tini", "--" ]