subrepo: subdir: "deps/libyaml" merged: "2c891fc" upstream: origin: "https://github.com/yaml/libyaml.git" branch: "0.2.5" commit: "2c891fc" git-subrepo: version: "0.4.6" origin: "???" commit: "???"
27 lines
421 B
Docker
27 lines
421 B
Docker
# 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"]
|