Added Dockerfile and Makefile rule

This commit is contained in:
David Allen 2024-07-30 10:36:16 -06:00
parent bc6eac3544
commit 699ff76e42
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
2 changed files with 28 additions and 9 deletions

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM cgr.dev/chainguard/wolfi-base
RUN apk add --no-cache tini bash
# nobody 65534:65534
USER 65534:65534
# copy the binary and all of the default plugins
COPY configurator /configurator
COPY lib/* /lib/*
CMD ["/configurator"]
ENTRYPOINT [ "/sbin/tini", "--" ]