Hi,
Good Day!
I have a folder which consists of dlls, script files and style sheets etc., I’d like to create docker image for that folder. Is it possible? If so, Please help me…
Thanks & Regards
Kanth
Share and learn in the Docker community.
Hi,
Good Day!
I have a folder which consists of dlls, script files and style sheets etc., I’d like to create docker image for that folder. Is it possible? If so, Please help me…
Thanks & Regards
Kanth
Short answer: yes
What you do is create your own Dockerfile and from there add your files. Depending on what you are trying to do, you need to start with an image that supports your application.
Since you are mentioning DLLs and style sheets etc I make an assumption that you are trying do dockerize a .NET-application. Take a look at https://docs.docker.com/engine/examples/dotnetcore/
thanks for your response,
I have some .jar, .bat and .exe files in the directory, Can I create docker image for that directory.
Thanks & regards
Kanth
Yes, you can.
But what are you trying to achieve? Distributing files, installation… Please describe what you want to do.