Created
January 27, 2023 15:46
-
-
Save Arnold-git/2b872136900d5c2678bf1be76079d4f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.9 | |
WORKDIR /sentimentApi | |
# | |
COPY ./app/requirements.txt /sentimentApi/requirements.txt | |
# | |
RUN pip install --no-cache-dir --upgrade -r /sentimentApi/requirements.txt | |
# | |
COPY ./app /sentimentApi/app | |
# | |
CMD exec gunicorn --bind :$PORT --workers 1 --worker-class uvicorn.workers.UvicornWorker --threads 8 app.main:app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment