remove-bg-api / Dockerfile
habulaj's picture
Update Dockerfile
7d0f4e0 verified
raw
history blame
205 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]