uncloud/Dockerfile

18 lines
378 B
Docker
Raw Normal View History

FROM python:3.10.0
2021-12-05 09:07:14 +00:00
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 \
2021-12-05 09:07:14 +00:00
libxml2-dev \
libxslt-dev \
libpq-dev \
libsasl2-dev \
wireguard-tools
2021-12-05 09:07:14 +00:00
RUN pip install --no-cache-dir -r requirements.txt
COPY . .