blob: d1e75b1079978601bf80c41df5ee761a41c24bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y lua5.1 liblua5.1-0-dev cmake git unzip wget
RUN apt-get install -y fuse libfuse-dev
RUN cd /tmp && wget https://luarocks.org/releases/luarocks-3.3.1.tar.gz \
&& tar zxpf luarocks-3.3.1.tar.gz \
&& cd luarocks-3.3.1 \
&& ./configure \
&& make && make install \
&& cd /tmp ; rm -rf luarocks-3.3.1 luarocks-3.3.1.tar.gz
RUN luarocks install yuescript
CMD ["yue"]
|