1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Dockerfile: Install bcrypt

This commit is contained in:
Unrud 2020-07-23 20:12:34 +02:00
parent 184c1ec3ee
commit f20b999630

View file

@ -15,7 +15,7 @@ RUN apk add --no-cache \
# Install Radicale
RUN wget --quiet https://github.com/Kozea/Radicale/archive/${VERSION}.tar.gz --output-document=radicale.tar.gz && \
tar xzf radicale.tar.gz && \
pip3 install ./Radicale-${VERSION} && \
pip3 install ./Radicale-${VERSION}[bcrypt] && \
rm -r radicale.tar.gz Radicale-${VERSION}
# Remove build dependencies
RUN apk del \