You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-setup.sh 148B

123456789
  1. #!/bin/bash
  2. # Install core utils.
  3. pip3 install pipenv
  4. # Download Python libs.
  5. cd /app
  6. pipenv install --system --deploy --ignore-pipfile
  7. pip3 list