14 lines
612 B
Docker
14 lines
612 B
Docker
FROM harbor.sitronics-kt.dev/infra/python3.8.3:latest
|
|
|
|
ARG PROJECT_NAME=project
|
|
ARG PYPI=https://nexus.sitronics-kt.dev/repository/pypi/simple
|
|
|
|
LABEL GROUP="IPD"
|
|
LABEL VERSION="$VERSION"
|
|
LABEL NAME="$PROJECT_NAME"
|
|
|
|
RUN echo "deb http://nexus.centr.m:8081/repository/ipd-products/ stable contrib main non-free" >> /etc/apt/sources.list &&\
|
|
apt update && apt install -y tnt-openssl tnt-boost tnt-python3=3.8.3 tnt-boost-python-common tnt-boost-python libprotobuf-dev infra-gisbase infra-oodb &&\
|
|
python3 -m pip install --upgrade pip wheel setuptools &&\
|
|
python3 -m pip install --upgrade poetry==1.7.1
|