Dockerfile: Install bcrypt

This commit is contained in:
Unrud 2020-07-23 20:12:34 +02:00
parent c6f6f2c1f4
commit f3b6b4869d

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 \