diff options
author | terminaldweller <devi@terminaldweller.com> | 2024-09-20 21:39:12 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2024-09-20 21:39:12 +0000 |
commit | 9915eaeeaf6287069b261697846881480912e968 (patch) | |
tree | 5e99a0cef1465031bbf59371175f58467920704c /Dockerfile | |
parent | added a docker build, though not sure how to use X or wayland or tmux through... (diff) | |
download | lclip-9915eaeeaf6287069b261697846881480912e968.tar.gz lclip-9915eaeeaf6287069b261697846881480912e968.zip |
wip, adding ollama as an alternative to detect-secrets
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"] |