# Clone the repository
git clone [email protected]:cabrowne/DIYPermeameter.git
# Create a conda environment to install dependencies for the app
conda create --name DIYPermeameter python=3.8
conda activate DIYPermeameter
# Install app requirements
cd DIYPermeameter/
pip install -r requirements.txt
# Run the app
streamlit run app.py
# Pull the image
docker pull hydroframe/diypermeameter:latest
# Launch the image on port 80
# Dockerfile must be edited to use a different port
docker run -p 80:80 hydroframe/diypermeameter:latest