aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2023-09-17 21:13:45 +0000
committerterminaldweller <devi@terminaldweller.com>2023-09-17 21:13:45 +0000
commit7efd93cf4cb0d2e78dab4e8157316a51dc1de8a3 (patch)
treee4050a3702fb2ca82d4ea675d9ec7e2db529de24 /Dockerfile
parentadded a new option that allows running a sql file on startup, added a user se... (diff)
downloadlclip-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--Dockerfile13
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"]