Hi everyone,
i have a question about addinf files to a docker already built.
My probleme is that i have an application that i put in a container, and it need a csv file to be executed, and this csv file is uploaded by the user.
All the answers i road were about using a docker volume, but the personn who want to run the application usually don"t know what is it.
I tried this manip in Docekrfile:
ARG file
COPY file /destination
but it fails at build.
My question is can i add a file to a container after the build without using volumes or the command “docker cp”.
Please HELP !!!