Jianw
2025-05-13 3b39fe3810c3ee2ec9ec97236c1769c5c85e062c
1
2
3
4
5
6
7
8
9
10
11
FROM nickblah/lua:5.4.6-luarocks-ubuntu
 
RUN apt-get update -qq > /dev/null \
    && apt-get install build-essential git zip -qq > /dev/null \
    && luarocks install dkjson > /dev/null \
    && luarocks install luacheck > /dev/null  \
    && luarocks install luacov > /dev/null  \
    && luarocks install luacov-coveralls > /dev/null  \
    && luarocks install busted > /dev/null
 
CMD ["busted"]