1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2025-06-28 18:55:13 +00:00

Use best practices for password hashing in webservice

This commit is contained in:
Kristóf Tóth
2018-04-28 16:13:35 +02:00
parent db9e2c055f
commit bb4745ed47
3 changed files with 18 additions and 12 deletions

View File

@ -2,7 +2,8 @@ FROM eu.gcr.io/avatao-challengestore/tutorial-framework
# Install webservice dependencies
RUN pip3 install Flask==1.0 \
SQLAlchemy==1.2.7
SQLAlchemy==1.2.7 \
passlib==1.7.1
# Define variables to use later
ENV TFW_SERVER_DIR="/srv/.tfw" \