forked from github.com/pypiserver
Ensured pypiserver user is assoc. w/group
This commit is contained in:
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 && \
|
||||
|
Loading…
Reference in New Issue
Block a user