SentimentAnalysis / Dockerfile
gruhit-patel's picture
Initial Commit
c7210e6 verified
raw
history blame
184 Bytes
FROM python:3.11
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r backend_requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]