aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-09-20 21:39:12 +0000
committerterminaldweller <devi@terminaldweller.com>2024-09-20 21:39:12 +0000
commit9915eaeeaf6287069b261697846881480912e968 (patch)
tree5e99a0cef1465031bbf59371175f58467920704c /Dockerfile
parentadded a docker build, though not sure how to use X or wayland or tmux through... (diff)
downloadlclip-9915eaeeaf6287069b261697846881480912e968.tar.gz
lclip-9915eaeeaf6287069b261697846881480912e968.zip
wip, adding ollama as an alternative to detect-secrets
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"]