aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 7dbe643..3eabd76 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]