skip to Main Content

Docker not importing Python file

I am building a python file that gives you the ETH balance from any crypto wallet. I want to do this by running the following Dockerfile: FROM python:3.9.6 ADD main.py . RUN pip freeze > requirements.txt RUN pip install -r…

VIEW QUESTION

Python drama with variable – Debian

in python I have this set of variable variable.py #--------------Project 1--------------# ip_server = '10.10.55.98' username = 'user_1' distro = 'debian' #--------------Project 2--------------# ip_server = '10.10.55.96' username = 'user_2' distro = 'opensuse' #--------------Project 3--------------# ip_server = '10.10.55.95' username = 'user_3' distro…

VIEW QUESTION
Back To Top
Search