pool_data/base.Dockerfile

13 lines
299 B
Docker

FROM python:3.10 as real_base_image
WORKDIR /pool_data
COPY requirements.txt .
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libsasl2-dev python-dev-is-python3 libldap2-dev libssl-dev
RUN pip install --upgrade pip
RUN pip --default-timeout=1000 install -r requirements.txt