remove-bg-api / Dockerfile
habulaj's picture
Create Dockerfile
b8737f0 verified
raw
history blame
201 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", "main:app", "--host", "0.0.0.0", "--port", "7860"]