File: Dockerfile

package info (click to toggle)
azure-uamqp-python 1.6.11-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 35,564 kB
  • sloc: ansic: 184,383; cpp: 7,738; python: 7,731; cs: 5,767; sh: 983; xml: 298; makefile: 34
file content (21 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ghcr.io/pyca/cryptography-manylinux2010:x86_64

# Build cmake 3.11
RUN pushd /tmp && \
    curl -O https://cmake.org/files/v3.11/cmake-3.11.0.tar.gz && \
    tar xvf cmake-3.11.0.tar.gz && \
    cd cmake-3.11.0 && \
    ./bootstrap && \
    make && \
    make install && \
    popd

# Build libuuid
RUN pushd /tmp && \
    curl -O https://cdn.kernel.org/pub/linux/utils/util-linux/v2.27/util-linux-2.27.1.tar.gz && \
    tar xvf util-linux-2.27.1.tar.gz && \
    cd util-linux-2.27.1 && \
    ./configure --disable-shared --disable-all-programs --enable-libuuid CFLAGS=-fPIC && \
    make && \
    make install && \
    popd