diff options
author | Cristian Haunsen <cristianhaunsen@gmail.com> | 2020-09-16 22:52:28 -0300 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-09-17 10:04:09 +0800 |
commit | fef716c4c4ff28822409f8ce05a05488da15fa76 (patch) | |
tree | 2b4ac15858d3bc4552f9055b7162e7e6ceb712bb /docker | |
parent | ff3b6e12ef85595a4f0c41ab361a8b806c0ac893 (diff) | |
download | yuescript-fef716c4c4ff28822409f8ce05a05488da15fa76.tar.gz yuescript-fef716c4c4ff28822409f8ce05a05488da15fa76.tar.bz2 yuescript-fef716c4c4ff28822409f8ce05a05488da15fa76.zip |
Update Dockerfile
Missing yes flag
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 58c92fe..895aba3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile | |||
@@ -2,7 +2,7 @@ FROM ubuntu:18.04 | |||
2 | 2 | ||
3 | RUN apt-get update && apt-get install -y lua5.1 liblua5.1-0-dev cmake git unzip wget | 3 | RUN apt-get update && apt-get install -y lua5.1 liblua5.1-0-dev cmake git unzip wget |
4 | 4 | ||
5 | RUN apt-get install fuse libfuse-dev | 5 | RUN apt-get install -y fuse libfuse-dev |
6 | 6 | ||
7 | RUN cd /tmp && wget https://luarocks.org/releases/luarocks-3.3.1.tar.gz \ | 7 | RUN cd /tmp && wget https://luarocks.org/releases/luarocks-3.3.1.tar.gz \ |
8 | && tar zxpf luarocks-3.3.1.tar.gz \ | 8 | && tar zxpf luarocks-3.3.1.tar.gz \ |
@@ -15,4 +15,4 @@ RUN luarocks install moonplus | |||
15 | 15 | ||
16 | RUN cd /tmp && git clone https://github.com/pigpigyyy/MoonPlus \ | 16 | RUN cd /tmp && git clone https://github.com/pigpigyyy/MoonPlus \ |
17 | && cd MoonPlus && make install \ | 17 | && cd MoonPlus && make install \ |
18 | && cd /tmp ; rm -rf MoonPlus/ \ No newline at end of file | 18 | && cd /tmp ; rm -rf MoonPlus/ |