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:
|
<<: Implementing a simple calculator with javascript
>>: Advanced and summary of commonly used sql statements in MySQL database
Preface You may often receive warning emails from...
<body> <div id="root"> <...
This article uses an example to describe the mana...
This article example shares the specific code for...
question: The commonly used command "ll"...
1. There are two ways to modify global variables ...
Make a blank space for Taobao: When you shrink th...
Table of contents Introduction How to connect to ...
I have been learning porters recently. I feel lik...
Table of contents Methods that do not change the ...
Effect The pictures in the code can be changed by...
As the computer is used, a lot of garbage will be...
Table of contents 1 Install Docker 2 Configuring ...
Write configuration files in server.xml and conte...
When the Docker container exits, the file system ...