summaryrefslogtreecommitdiff
path: root/docker/alpine-3.7
diff options
context:
space:
mode:
Diffstat (limited to 'docker/alpine-3.7')
-rw-r--r--docker/alpine-3.726
1 files changed, 26 insertions, 0 deletions
diff --git a/docker/alpine-3.7 b/docker/alpine-3.7
new file mode 100644
index 000000000000..ac2d625beda9
--- /dev/null
+++ b/docker/alpine-3.7
@@ -0,0 +1,26 @@
+# vim: ft=dockerfile
+FROM alpine:3.7
+MAINTAINER Ingy döt Net <ingy@ingy.net>
+
+RUN apk update && \
+ apk add --no-cache \
+ autoconf \
+ automake \
+ build-base \
+ cmake \
+ git \
+ libtool \
+ perl-dev && \
+ mkdir /libyaml
+
+COPY . /libyaml/
+WORKDIR /libyaml
+
+ENV LD_LIBRARY_PATH=/libyaml/src/.libs
+
+RUN ./bootstrap && \
+ ./configure && \
+ make && \
+ make install
+
+CMD ["bash"]