diff options
-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"] |