aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 7dbe64325c31c67dc4cd8e9f101af2358dce85fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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"]