diff options
-rw-r--r-- | README.md | 13 | ||||
-rw-r--r-- | docker/Dockerfile | 2 |
2 files changed, 12 insertions, 3 deletions
@@ -109,9 +109,16 @@ Usage: moonp [options|files|directories] ... | |||
109 | 109 | ||
110 | 110 | ||
111 | * **Docker Hub** | 111 | * **Docker Hub** |
112 | Try moonp in another easy way: https://hub.docker.com/r/moonplus/moonplus | 112 | Try moonp in another easy way: https://hub.docker.com/r/moonplus/moonplus. |
113 | 113 | ```bash | |
114 | 114 | docker run -it moonplus/moonplus:0.4.19 | |
115 | ``` | ||
116 | |||
117 | The REPL console should be ready, | ||
118 | ```bash | ||
119 | Moonscript+ 0.4.19 | ||
120 | > | ||
121 | ``` | ||
115 | 122 | ||
116 | ## Editor Support | 123 | ## Editor Support |
117 | 124 | ||
diff --git a/docker/Dockerfile b/docker/Dockerfile index 895aba3..c4ccab9 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile | |||
@@ -16,3 +16,5 @@ RUN luarocks install moonplus | |||
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/ | 18 | && cd /tmp ; rm -rf MoonPlus/ |
19 | |||
20 | CMD ["moonp"] | ||