diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-06-25 15:13:45 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-06-25 15:14:13 +0000 |
| commit | 5f99da5545ebe3c081dc126e00ec7d801db9c772 (patch) | |
| tree | e692d78fdb6bc34a660e9e586c121e03afb8b5ff /docker/alpine-3.7 | |
| parent | 5c7ba42d2e90bdd94bb55c80d0787e998fad44f9 (diff) | |
Diffstat (limited to 'docker/alpine-3.7')
| -rw-r--r-- | docker/alpine-3.7 | 26 |
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"] |
