diff options
author | terminaldweller <devi@terminaldweller.com> | 2023-09-17 21:13:45 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2023-09-17 21:13:45 +0000 |
commit | 7efd93cf4cb0d2e78dab4e8157316a51dc1de8a3 (patch) | |
tree | e4050a3702fb2ca82d4ea675d9ec7e2db529de24 /Dockerfile | |
parent | added a new option that allows running a sql file on startup, added a user se... (diff) | |
download | lclip-7efd93cf4cb0d2e78dab4e8157316a51dc1de8a3.tar.gz lclip-7efd93cf4cb0d2e78dab4e8157316a51dc1de8a3.zip |
added a docker build, though not sure how to use X or wayland or tmux through that
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7dbe643 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM alpine:3.18 +RUN apk update && \ + apk add --no-cache \ + sqlite \ + lua5.3 \ + lua-posix \ + lua-sqlite \ + lua-argparse \ + py3-pip && \ + pip3 install --no-cache-dir detect-secrets +WORKDIR /lclipd +COPY ./*.lua /lclipd/ +ENTRYPOINT ["/lclipd/lclipd.lua"] |