feat: initial commit

This commit is contained in:
Iain Learmonth 2025-04-27 17:20:02 +01:00
commit 6179dea246
19 changed files with 693 additions and 0 deletions

13
legacy/Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM akorn/luarocks:lua5.1-alpine
RUN apk add build-base openssl-dev
RUN luarocks install luasocket \
&& luarocks install luasec \
&& luarocks install lua-cjson \
&& luarocks install redis-lua \
&& luarocks install luaposix
WORKDIR /opt/updater
COPY updater.lua .
CMD ["lua", "updater.lua"]