Files
2024-09-28 21:43:20 -04:00

14 lines
401 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
echo "**** Setting up poetry ****"
# Install poetry
curl -sSL https://install.python-poetry.org | python3 -
# Add poetry to the path
echo "**** ensuring poetry is in PATH ****"
if ! grep -q "$HOME/.local/bin" /var/run/s6/container_environment/PATH; then
printf ':$HOME/.local/bin' >> /var/run/s6/container_environment/PATH
fi
echo "**** poetry setup complete ****"