Add py-bcrypt to Dockerfile

Resolves #224

Adds `py-bcrypt` via `apk` to the Docker image so that `htpasswd`
works as intended.
This commit is contained in:
Matthew Planchard 2018-11-09 16:27:37 -06:00
parent e23cd0333e
commit ce9f4f75be
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ WORKDIR /code
RUN adduser -S -u 9898 pypiserver && \
addgroup -S -g 9898 pypiserver && \
apk add py-bcrypt && \
python setup.py install && \
pip install passlib && \
cd / && \