X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker%2Fbldr-alpine-python%2FDockerfile;fp=docker%2Fbldr-alpine-python-nng%2FDockerfile;h=88e63999e903de23fded3e6d5b190617a4b6b293;hb=66a126044c9b105e41d8cf359823e66e5c9a43e3;hp=b805a46de0b57eff1c4742afcb63d92eca832a6a;hpb=90e23c8973a9a1378fe3991b6ad75ef0388f737d;p=ci-management.git diff --git a/docker/bldr-alpine-python-nng/Dockerfile b/docker/bldr-alpine-python/Dockerfile similarity index 93% rename from docker/bldr-alpine-python-nng/Dockerfile rename to docker/bldr-alpine-python/Dockerfile index b805a46d..88e63999 100644 --- a/docker/bldr-alpine-python-nng/Dockerfile +++ b/docker/bldr-alpine-python/Dockerfile @@ -12,7 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM python:3-alpine +FROM python:3.7-alpine RUN apk update && \ apk add \ @@ -33,9 +33,8 @@ RUN git clone --branch v2015.09.25 git://git.sv.gnu.org/autoconf-archive.git RUN cp /tmp/autoconf-archive/m4/* /usr/share/aclocal RUN rm -rf /tmp/autoconf-archive -RUN git clone https://github.com/nanomsg/nng +RUN git clone --branch v1.1.1 https://github.com/nanomsg/nng WORKDIR /tmp/nng -RUN git checkout v1.1.1 RUN mkdir /tmp/nng/build WORKDIR /tmp/nng/build RUN cmake -DBUILD_SHARED_LIBS=1 -G Ninja ..