File size: 152 Bytes
f99591b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
FROM python:3.11

COPY requirements.txt roapi.yml /app/

RUN pip install --no-cache-dir -r /app/requirements.txt

CMD ["roapi", "-c", "/app/roapi.yml"]