I have below structure
folder1
Dockerfile
start.sh
folder2
config.ini
someotherfiles
inside the Dockerfile
i have added
COPY ../folder2/config.ini /
COPY ../somotherfiles /
Now when I build the docker, i'm getting error file not found.
how can I copy the files which is one folder up where the Dockerfile exists?