How to run Python script on Docker

How to run Python script on Docker

First create a specific project directory for your docker image. For example:

mkdir /home/pi/Desktop/teasr/capturing

Copy the dockerfile and script there and change the current context to this directory

cp /home/pi/Desktop/teasr/capturing.py /home/pi/Desktop/teasr/dockerfile /home/pi/Desktop/teasr/capturing/

cd /home/pi/Desktop/teasr/capturing

This is best practice because the first thing docker-engine does when building is to read the entire current context.

Next we'll take a look at your Dockerfile. It should now look like this:

The next thing you need to do is to build it with a smart name, the use of dots is generally discouraged.

docker build -t pulkit/capturing:1.0 .

Next is to run the image like you did.

docker run -ti --name capturing pulkit/capturing:1.0

The script is now executed inside the container and may exit when finished.

Note: The first line in the script needs to be #! /usr/bin/env python .

This is the end of this article about how to run Python scripts on Docker. For more information about how to run Python scripts on Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to build a deep learning environment running Python in Docker container
  • How to create a basic image of the Python runtime environment using Docker
  • Using Docker to run a simple Python program

<<:  Implementing a simple calculator with javascript

>>:  Advanced and summary of commonly used sql statements in MySQL database

Recommend

Summary of 11 common mistakes made by MySQL call novices

Preface You may often receive warning emails from...

JavaScript to achieve uniform animation effect

This article example shares the specific code for...

How to implement blank space in Taobao with CSS3

Make a blank space for Taobao: When you shrink th...

Detailed explanation of how to use Tomcat Native to improve Tomcat IO efficiency

Table of contents Introduction How to connect to ...

Methods for deploying MySQL services in Docker and the pitfalls encountered

I have been learning porters recently. I feel lik...

Detailed explanation of common methods of JavaScript Array

Table of contents Methods that do not change the ...

HTML+CSS to implement the sample code of the navigation bar drop-down menu

Effect The pictures in the code can be changed by...

How to find identical files in Linux

As the computer is used, a lot of garbage will be...

Summary of several commonly used CentOS7 images based on Docker

Table of contents 1 Install Docker 2 Configuring ...

Instructions for using the --rm option of docker run

When the Docker container exits, the file system ...