thesis / entrypoint.sh
LennardZuendorf's picture
Bump to Version 1.0.1 (#4)
fe1089d 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