Whats-The-Weather / Dockerfile
user6295018's picture
Update Dockerfile
136d46c verified
raw
history blame contribute delete
174 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]