diff options
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,13 +1,16 @@ -FROM alpine:3.18 +FROM alpine:3.20 RUN apk update && \ apk add --no-cache \ sqlite \ lua5.3 \ lua-posix \ lua-sqlite \ + lua-socket \ + lua-http \ lua-argparse \ - py3-pip && \ - pip3 install --no-cache-dir detect-secrets + lua5.3-cqueues \ + pipx && \ + pipx install detect-secrets WORKDIR /lclipd COPY ./*.lua /lclipd/ ENTRYPOINT ["/lclipd/lclipd.lua"] |