vaibhavlakshmi's picture
Upload folder using huggingface_hub
b00c961 verified
raw
history blame contribute delete
134 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY app/router_node.py .
RUN pip install fastapi uvicorn aiohttp
CMD ["python", "router_node.py"]