Files
LuaMicroservices/devices-worker/Dockerfile
Christian van Dijk 94b4f31102
Some checks failed
CI / Lint (push) Failing after 39s
CI / Build (push) Has been skipped
CI / Test (push) Has been skipped
CI / Helm Lint (push) Successful in 13s
🎉 initial commit
2026-02-23 09:47:16 +01:00

14 lines
301 B
Docker

FROM nickblah/lua:5.4-luarocks-alpine
RUN apk add --no-cache gcc musl-dev make libpq git curl procps linux-headers pkgconfig
RUN luarocks install lua-cjson
RUN luarocks install luasocket
RUN luarocks install pgmoon
RUN luarocks install redis-lua
WORKDIR /app
COPY . /app
CMD ["lua", "worker.lua"]