add bcrypt password hashing and clean up code #1

Open
julia wants to merge 5 commits from julia/self-service-api:main into main
Showing only changes of commit b36fe5157b - Show all commits

View File

@ -3,7 +3,7 @@ FROM python:3.9-alpine
WORKDIR /opt/self-service
COPY requirements.txt ./
RUN apk add --no-cache build-base openldap-dev python2-dev python3-dev
RUN apk add --no-cache build-base openldap-dev python2-dev python3-dev musl-dev gcc libffi-dev
RUN pip install --no-cache-dir -r requirements.txt
COPY ./src ./src