What is Multistage Dockerfile ?

Поделиться
HTML-код
  • Опубликовано: 6 сен 2024

Комментарии • 10

  • @rachelk4225
    @rachelk4225 15 дней назад

    Sir bahot bahot dhanyawaad , is video k liye

  • @vaishnavisoundane3982
    @vaishnavisoundane3982 3 месяца назад

    This is exactly how I wanted someone to explain to me about Dockerfiles. Thanks a lot .

  • @Luther_Luffeigh
    @Luther_Luffeigh Год назад

    You have been publishing videos for more than 5 years!!!

  • @mohdrayees8919
    @mohdrayees8919 2 месяца назад

    Hey from where can i get this source code github repo?

  • @raviupadhyay7016
    @raviupadhyay7016 Год назад

    do you have any full blown courses of docker and Kubernetes.

  • @samarthchoudhary6883
    @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
      @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
      @maheshs5517 Год назад +1

      @@gouravshahj I think it is similar to MKDIR [-p]. WORKDIR creates directory on the fly

    • @me_debankan4178
      @me_debankan4178 Год назад

      Workdir simply create a directory ( if not present ) and make all incoming commands run on that specified directory

  • @theconfusedchannel6365
    @theconfusedchannel6365 6 месяцев назад

    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?