Skip to content

Commit

Permalink
fix: add required crypt libraries 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
meysam81 committed May 13, 2022
1 parent fdbf691 commit 4c98d19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL author="Meysam Azad <meysam@licenseware.io>"

ENV PYTHONUNBUFFERED=1

RUN pip install -U pip
RUN apk add --update gcc musl-dev libffi-dev && pip install -U pip

COPY . .

Expand Down
2 changes: 0 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
from pprint import pformat
import flask_bcrypt

import boto3

DEFAULT_PASSWORD_LENGTH = 16
DEFAULT_LOG_LEVEL = "error"
PASSWORD_OUTPUT_KEY = "password"
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
flask-bcrypt~=0.7
flask-bcrypt~=0.7.1
werkzeug~=2.0.0

0 comments on commit 4c98d19

Please sign in to comment.