How to pass Port number from docker-compose and use it in Entrypoint?
I would like to build one image and run multiple containers against same image with containers running on different ports I have following docker file FROM python:3.9 ARG port RUN mkdir /code RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY…