For the second Dockerfile you showed in this video (18:25) I just wanted to mention that in general it's better practice to have RUN pip install directly after COPY requirements.txt and before COPY ./src This is because of the way docker caches build layers. As soon as any change happens, all subsequent commands will also need to be rerun. The way you had it, if you changed any files in the ./src directory, then when you build the pip install command would also be run again. However by changing it how I mentioned, the pip install will be cached and only get rerun if you change the requirements.txt In this example it wasn't a big deal, but if your project has a huge number of dependencies then this can save a lot of time during the build process.
@xMSaccountx Жыл бұрын
oh wow thanks for that mate ,going to definitely take a close look to my files as well ,efficency is key
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@abdelrhmansayed5436 Жыл бұрын
you are 100% right 👌
@johnraz997 ай бұрын
Thanks! Was learning Python and now a bonus with Docker!
@HitAndMissLab Жыл бұрын
Wow, this was a great intro video! I heard about the Docker x100 times, but never knew what was its purpose. Now I understand the whole concept. Thanks!
@michaelmebratu2921 Жыл бұрын
You are the GOAT 🐐 of the best python tutorial!!
@Kaelthas_Sunstrider Жыл бұрын
Agreed!
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@Akonitx Жыл бұрын
so simple... I had thought that to put your web app to docker is much harde. Thanks for your explanation
@HersonMelo Жыл бұрын
Amazing!!! Thanks for always sharing your knowledge!
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@hyakushiki239 ай бұрын
Super helpful! First time using Dockers and thank you so much for your amazing videos and they are great tutorials
@ParanoidNotAndroid Жыл бұрын
Really good presentation straight to the point and presenting something really usefull in an easy way! Thanks
@yahnnoshyunggo4673 Жыл бұрын
Thank you! You explained it simple and clearly
@cezarycodes2192 Жыл бұрын
Nice video! Pls make video about kubernetes :)
@knowhowww Жыл бұрын
thank you. defo easy to follow and understand, finally..
@beliebigerusername3 ай бұрын
Flori, bist der Beste! 😎
@NeuralNine3 ай бұрын
Florian* aber Windows hatte nur 5 Zeichen :D
@juanete698 ай бұрын
Do you need to client.close() inside the while loop or outside? Why? If we want it to work on both Linux and Windows, do we need to write instead of just ?
@cesarp6761 Жыл бұрын
would be great to know what to do next in case you want to run the docker in a raspeberry, or aws or another remote place.. how do you get it from your machine.. options? : upload/download from the docker hub, move manually, etc..
@rmatveev Жыл бұрын
Why are you using square brackets in your CMD docker file command and not for RUN command?
@НикитаТ-п6в Жыл бұрын
Why are EXPOSE statements not being used?
@quidelicia1 Жыл бұрын
Nice. Thanks for sharing the knowledge!!!
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@quidelicia1 Жыл бұрын
@@keflerbrownb.6450 I'm pretty sure you can containerize almost anything on your SO, but I'm not the best person to tell you how.
@keflerbrownb.6450 Жыл бұрын
@@quidelicia1 i'm have been trying Docker on a basic pyqt5 frame app, it's doesn't run
@atlantic_love Жыл бұрын
@@keflerbrownb.6450 Stop spamming. Obviously no one has an aswer for you.
@maloukemallouke9735 Жыл бұрын
how do you doing when you need application with muliprcessing in python?
@mohammedal-mudhafar46026 ай бұрын
Great content, Thanks a lot !
@danielniels225 ай бұрын
thank you. i just finished a 5 hours docker course that covers A to Z of docker features but didn't even give a case study like this 🥲
@GrigoriKog Жыл бұрын
can i docker a python project with yolov8 ? Also how can i return the frame that shows car video detection and counter cap=cv2.VideoCapture('park.mp4')
@billblair3155Ай бұрын
Thx Sir, very much!
@awuyadaniel89829 ай бұрын
Beautiful Thanks man
@c-o-m-o-n Жыл бұрын
Hi, following the video ("publish your own python package"), I published a python package ( textbin==0.0.1) based on your other video "convert text to binary", but when I import it in a script, I get this error. (" AttributeError: module 'textbin' has no attribute 'to_binary'") .how can I solve this??
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@ramya1139 Жыл бұрын
10:01 -- the cmd prompt is hanging after the docker build command, any possible reasons???
@Maric18 Жыл бұрын
intro over at 7:50
@gabrielmartins7642 Жыл бұрын
Sadly I have a very cheep acer laptop that in all circumstances would be able to suport virtualization except if acer wasn't garbage and blocked jt from the bios with no option to ever activate it... Acer aspire E15... sometimes I get really angry when I see a new skill that I could be learning but am stuck by my hardware
@PatrickSVM Жыл бұрын
Thanks for the explanation!
@TeamHLUPa10 ай бұрын
Thanks!
@omudugavu Жыл бұрын
hi my customtkinter wont run in my visual studio, cant tell why, an error comes saying( File "c:\Users\CABIN STORE\Desktop\build\hhhh.py", line 3, in import customtkinter ) what would be the problem, tho it runs in my pycharm , but i want it in visualstudio
@vymvn6 Жыл бұрын
Check which python interpreter is being used
@ricardocantu Жыл бұрын
I understood that the container will include any packages that are not installed on the system, but what about python itself? Is that also included, or does the system running docker need to have had python installed before?
@emrahe468 Жыл бұрын
"When you create a Docker image, you can specify the base image, which provides the runtime environment for your application. For example, you might use a base image that includes Python, such as the python:3.9 image. This base image includes the Python runtime environment, which means that you don't need to have Python installed on the system running Docker. So to answer the question, yes, the Python runtime environment is included in the Docker image, as long as you specify a base image that includes Python. You don't need to have Python installed on the system running Docker. It's worth noting that when you create a Docker image, you're creating an isolated environment that is separate from the host system. This means that any changes made within the container, such as installing additional Python packages, will not affect the host system. This can be a powerful tool for ensuring that your application runs consistently and reliably across different systems, without having to worry about conflicts with other applications or dependencies."
@ramirez368Ай бұрын
Pretty nice....
@samyoval93554 ай бұрын
Trevor noah is that you! Lol you sound just like him.
@lurby896 ай бұрын
Great!!
@Daystarjn Жыл бұрын
Bro can you please make a tut on how to make our own port forwarder server
@ongphamong906 Жыл бұрын
How to install tensorflow gpu on wsl2?
@laodefefliyarlin939 Жыл бұрын
HOW TO CREATE A SPEECH RECOGNITION USING MFCC AND HMM
@arthurmann1624 Жыл бұрын
What is the chance you'll make a tutorial of an example of microservices with docker and whatever framework in Python? Plssss Like this comment to make him see it 😘👍
@SenselessTalk Жыл бұрын
Flori, you should make a tutorial how to deploy dockerized environments to other PC/Server. This is pointless, why would I deploy my python app on my PC using docker.
@AstroStrongBox Жыл бұрын
Agreed deploying to casaOS to run Python application on a home server using the ZimaBoard would be a great use case.
@SuyashSonawane Жыл бұрын
The point is that you then also get to test your code with upcoming versions of python. Future projects of yours could run on different python versions as well. Managing multiple python versions system-wide or even with virtual-envs gets tiring after a while.
@wasgeht2409 Жыл бұрын
Thanks
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@awaisahmad59085 ай бұрын
great video
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@serychristianrenaud Жыл бұрын
THANK
@keflerbrownb.6450 Жыл бұрын
Can we containerize PyQt5 app ?
@KhantSiThuPhyo-c5c Жыл бұрын
What about odoo
@johnwu5908 Жыл бұрын
GOAT
@Hamid-wr7pe6 ай бұрын
👏🏻
@chriskeo392 Жыл бұрын
Video starts @ 7:30 Anything before is out of scope
@willbrodmutesi4989 Жыл бұрын
Containerise flask app
@jotsingh9319 Жыл бұрын
Hey man can you make a video on python Instagram bot ?