commit 63598ac394dc345888f0bf40a3d066de0ce993b3 Author: Dustin C. Hatch Date: Fri Nov 22 18:22:21 2024 -0600 Initial commit diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..62affff --- /dev/null +++ b/Containerfile @@ -0,0 +1,10 @@ +# vim: set ts=4 : +FROM alpine + +RUN --mount=type=cache,target=/var/cache \ + apk add \ + keepalived \ + tini \ + && : + +ENTRYPOINT ["tini", "keepalived", "--", "-n"]