Hi
I have a below project dir:
MyProject:
configs
client1.json
client2.json
client3.json
app.py
I have created a docker image. I want to run three containers for each of the three client. Each of them should use their own defined configs. As of now I am just using the below dockerfile because I just had 1 config file. But is there a way to define which config file to use which starting a container
# syntax=docker/dockerfile:1
FROM python:3.8-slim-buster
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python3", "app.py"]