File: Dockerfile

package info (click to toggle)
plyvel 1.5.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 316 kB
  • sloc: python: 927; cpp: 78; makefile: 42; sh: 41
file content (14 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM quay.io/pypa/manylinux2014_x86_64

# Remove sudo executable, since it does not work at all.
# The installation scripts will not to invoke it.
RUN rm "$(which sudo)"

COPY scripts/ .

RUN ./install-snappy.sh
RUN ./install-leveldb.sh

ENV PATH="/opt/python/cp39-cp39/bin:${PATH}"

RUN pip install --upgrade pip setuptools cython