aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/libuv_install.include
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tools/dockerfile/libuv_install.include')
-rw-r--r--templates/tools/dockerfile/libuv_install.include7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/tools/dockerfile/libuv_install.include b/templates/tools/dockerfile/libuv_install.include
new file mode 100644
index 0000000000..a249c095db
--- /dev/null
+++ b/templates/tools/dockerfile/libuv_install.include
@@ -0,0 +1,7 @@
+#================
+# libuv
+RUN cd /tmp \
+ && wget http://dist.libuv.org/dist/v1.9.1/libuv-v1.9.1.tar.gz \
+ && tar -xf libuv-v1.9.1.tar.gz \
+ && cd libuv-v1.9.1 \
+ && sh autogen.sh && ./configure --prefix=/usr && make && make install \ No newline at end of file