File size: 134 Bytes
b00c961
 
 
 
 
1
2
3
4
5
6
FROM python:3.10-slim
WORKDIR /app
COPY app/router_node.py .
RUN pip install fastapi uvicorn aiohttp
CMD ["python", "router_node.py"]