mobile_prices / Dockerfile
Mahmoud7's picture
Create Dockerfile
d164872
raw
history blame contribute delete
192 Bytes
FROM python:3.9
COPY requirements.txt app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]