1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
FROM alpine:3.20 RUN apk update && \ apk add --no-cache \ sqlite \ lua5.3 \ lua-posix \ lua-sqlite \ lua-socket \ lua-http \ lua-argparse \ lua5.3-cqueues \ pipx && \ pipx install detect-secrets WORKDIR /lclipd COPY ./*.lua /lclipd/ ENTRYPOINT ["/lclipd/lclipd.lua"]