
May 13, 2023
3:24 a.m.
Dear Hakan, thanks for helping out. I still had problems to get BIT run in a container. The reason most was outdated depending packages etc. I gave it up and created a minimal working example (MWE) script to reproduce the error I tried to investigate. Then I created a Dockerfile FROM python:3.6 RUN python -m pip install pytest COPY callargs.py . CMD ["./callargs.py"] The "callargs.py" script is my MWE. Then I build the container: sudo docker build -t Foobar . And I run the script in the container sudo docker run -t Foobar Kind Christian