uncloud-mravi/Dockerfile
Nico Schottelius 174479f6d7 Add 2nd dockerfile for debian based systems
To move forward while ldap doesn't build
2021-12-05 11:11:34 +01:00

16 lines
359 B
Docker

FROM python:3.10.0
WORKDIR /usr/src/app
COPY requirements.txt ./
# OS requirements for building wheel and for operating uncloud
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
libldap-dev \
libxml2-dev \
libxslt-dev \
libpq-dev \
wireguard-tools
RUN pip install --no-cache-dir -r requirements.txt
COPY . .