emollama / Dockerfile
joaoargolo1's picture
Update Dockerfile
bad4442 verified
raw
history blame contribute delete
262 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt .
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt && \
rm -rf ~/.cache/pip
COPY . .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]