-
Notifications
You must be signed in to change notification settings - Fork 37
Description
Hi, there. I am working on a project to evaluate agents inside docker containers. In other word, I need to install various agents inside the released docker images. However, I noticed that there are plenty of docker images have Pypi issues, where http connection is set to localhost. After diving into the dockerfiles, I find the following lines.
pypi-timemachine 2024-06-07 --port 9876 &
pip config set global.index-url http://127.0.0.1:9876/From my understanding, this connects to your internal Pypi platform. My question is that if I can set global.index-url back to the official one (https://pypi.org/simple) without harming the following evaluation procedures.
Also, another issue is that the released docker images are not from a unified base docker. Therefore, I doubt there are more issues (e.g., network connection) like this Pypi one. Is it possible for you to provide the rules, following which the dockerfiles are generated? Currently, I have faced so many conner cases, and I have to fix them one docker image by another... With a documentation, maybe I can speed up and fix them quickly.