mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
Dockerfile: install pip directly from python3 module
This commit is contained in:
parent
b0c82f01d0
commit
8e93208fdf
1 changed files with 4 additions and 4 deletions
|
@ -13,13 +13,13 @@ RUN apk --update --update-cache upgrade \
|
|||
python3-dev \
|
||||
build-base \
|
||||
libffi-dev \
|
||||
ca-certificates
|
||||
ca-certificates \
|
||||
&& python3 -m ensurepip \
|
||||
&& pip3 install --upgrade pip
|
||||
|
||||
# Python installation
|
||||
# pip
|
||||
ADD https://bootstrap.pypa.io/get-pip.py /tmp/install/
|
||||
RUN python3 /tmp/install/* && \
|
||||
pip install passlib bcrypt setuptools
|
||||
RUN pip3 install passlib bcrypt setuptools
|
||||
|
||||
# Radicale installation
|
||||
RUN mkdir -p /data/config
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue