Skip to content

Commit

Permalink
Add python3-bcrypt to the toolkit
Browse files Browse the repository at this point in the history
Needed to bcrypt hash passwords for postgresql

For example:

  python3 -c "import bcrypt; print(bcrypt.hashpw('password'.encode('utf-8'), bcrypt.gensalt()).decode())"
  • Loading branch information
jeffmccune committed Oct 19, 2024
1 parent 317eb9e commit f3d740a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions toolkit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ RUN apt-get -qq -y update && \
jq \
less \
sudo \
python3-bcrypt \
&& apt-get clean \
&& rm -rf /var/cache/apt/archives /var/lib/apt/lists/*

Expand Down

0 comments on commit f3d740a

Please sign in to comment.