How to run Python scripts in a Docker container

I showcase how to build and run Docker on windows. I create a ubuntu-based Docker Image and then run it to print “Hello World“. To showcase the functionality I jump into the docker container and show some basic Linux functionality. Commands: Build a docker image: docker build -t [tag] [dockerfile position] Create and run a Docker container docker run [docker image] How to get into a docker container docker run -it [docker image] /bin/bash My channel publishes videos regarding programming, software engineering especially Java and JavaFX. If that is what you are looking for then do not hesitate to join me on this journey! Subscribe to my YouTube channel:
Back to Top