Live-Weather / Dockerfile
Zoro-147's picture
Update Dockerfile
7da52a0 verified
raw
history blame
211 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
# Hugging Face requires port 7860
EXPOSE 7860
CMD ["sh", "-c", "uvicorn main:app --host 0.0.0.0 --port 7860"]