Ensured pypiserver user is assoc. w/group

This commit is contained in:
Matthew Planchard 2018-11-09 18:21:32 -06:00
parent 5bced5ca0b
commit a10e85e946

@ -4,8 +4,8 @@ FROM python:3.6-alpine
COPY . /code
WORKDIR /code
RUN adduser -S -u 9898 pypiserver && \
addgroup -S -g 9898 pypiserver && \
RUN addgroup -S -g 9898 pypiserver && \
adduser -S -u 9898 -G pypiserver pypiserver && \
apk add py-bcrypt && \
python setup.py install && \
pip install passlib && \