Files
Christian van Dijk dbbe991a3d
Some checks failed
CI / Lint (push) Successful in 21s
CI / Helm Lint (push) Successful in 6s
CI / Build (push) Successful in 1m52s
CI / Test (push) Failing after 54s
🧱 ci changes
2026-02-23 22:27:50 +01:00

17 lines
361 B
Docker

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