Repair template trigger path
[ci-management.git] / docker / bldr-alpine-python / Dockerfile
1 #   Copyright (c) 2019 AT&T Intellectual Property.
2 #   Copyright (c) 2019 Nokia.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 FROM python:3.7-alpine
16
17 RUN apk update && \
18  apk add \
19    alpine-sdk \
20    autoconf \
21    automake \
22    build-base \
23    cmake \
24    git \
25    libtool \
26    ninja
27
28 WORKDIR /tmp/
29
30 # the autoconf-archive in alpine's edge repos is too new
31 # for our purposes, so we'll use one from the source.
32 RUN git clone --branch v2015.09.25 git://git.sv.gnu.org/autoconf-archive.git
33 RUN cp /tmp/autoconf-archive/m4/* /usr/share/aclocal
34 RUN rm -rf /tmp/autoconf-archive
35
36 RUN git clone --branch v1.1.1 https://github.com/nanomsg/nng
37 WORKDIR /tmp/nng
38 RUN mkdir /tmp/nng/build
39 WORKDIR /tmp/nng/build
40 RUN cmake -DBUILD_SHARED_LIBS=1 -G Ninja ..
41 RUN ninja
42 RUN ninja install
43 WORKDIR /tmp/
44 RUN rm -rf /tmp/nng