thesis / entrypoint.sh
LennardZuendorf's picture
feat: implementing latest version and basic interpretability methods
f8c9e3f unverified
raw
history blame
236 Bytes
#!/bin/bash
# entrypoint script for the docker container to run at start
# installing all the dependencies
pip install --no-cache-dir --upgrade -r requirements.txt
# running the fastapi app
uvicorn main:app --host 0.0.0.0 --port 8080