Add drone.yml

This commit is contained in:
Tyler Perkins 2023-09-22 17:55:53 -04:00
parent 41a19dd6d2
commit 6bcd4e18d4
1 changed files with 3 additions and 1 deletions

View File

@ -8,4 +8,6 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./src /code/src
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "80"]
WORKDIR /code/src
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]