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