FROM python:3.10.4-slim-bullseye WORKDIR /app COPY requirements.txt requirements.txt RUN apt-get update -y RUN apt-get install -y cmake capnproto RUN pip3 install -r requirements.txt COPY . . VOLUME /app/config CMD [ "python3", "main.py"]