This is exactly how I wanted someone to explain to me about Dockerfiles. Thanks a lot .
@rachelk42253 ай бұрын
Sir bahot bahot dhanyawaad , is video k liye
@Luther_Luffeigh Жыл бұрын
You have been publishing videos for more than 5 years!!!
@mohdrayees89195 ай бұрын
Hey from where can i get this source code github repo?
@raviupadhyay7016 Жыл бұрын
do you have any full blown courses of docker and Kubernetes.
@samarthchoudhary6883 Жыл бұрын
Hello, Nice content! One quick question- how we are giving the paths in WORKDIR? I mean it's based on base image structure or how?
@gouravshahj Жыл бұрын
WORKDIR path depends on where you want to copy the code, compile and run the application from. This is nothing to do with base image. You could define any path that your application needs and it would be automatically created during build time and then used subsequently by all other instructions including COPY, RUN, CMD etc.
@maheshs5517 Жыл бұрын
@@gouravshahj I think it is similar to MKDIR [-p]. WORKDIR creates directory on the fly
@me_debankan4178 Жыл бұрын
Workdir simply create a directory ( if not present ) and make all incoming commands run on that specified directory
@theconfusedchannel63658 ай бұрын
Hmm nothing new in this video. Talks about same things. I have requirement , I have to use rockylinux container, I need python 3.10, mssql. Can you post what all I can do to reduce. Yes layers is one of them what else?