About installing python3.8 image in docker

About installing python3.8 image in docker

Docker Hub official website

1. Search for Python mirror
docker search python

2. Pull the Python image

docker pull python

3. Check the image after downloading is complete

docker images

4. Run the python image

docker run -itd python:latest bash

5. Enter the container

docker exec -it 6a55 bash # 6a55 is the container id obtained after docker ps checks the python image startup. You can get the complete container id

6. Check the Python version

7. This python image is the base images. All the crawler images I made later are based on this image.

8. The docker commands used are as follows:

docker commit -m='scrapyd' -a='spider' 6a55 scrapyd/python3.8.3:v1
Reference: Docker creates an image

9. Since it is a base image, you need to install some common commands
10. Update apt-get

apt-get update

apt-get install lrzsz -y# Please Baidu for the function of lrzsz

apt-get install vim -y #Must install the artifact, hehe

pip install -i https://pypi.douban.com/simple ipython
# You can set the pip source, I don't usually set it

apt-get install net-tools

cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# Change time zone
11. That’s all I can think of for now
ctrl+d to exit the current container
12. Remake the container that just installed so many things into a new image
docker ps# Get the container id, mine is 6a55392dba72

13. Start production

docker commit -m="base images" -a="spider" 6a55392dba72 python3.8.3:base-images

If a long string of sha256 appears, it is successful.
14. View the image
docker images

15. Run the created image

This is the end of this article about installing python3.8 image in docker. For more information about installing python3.8 image in docker, please search 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 create a basic image of the Python runtime environment using Docker
  • PyCharm uses Docker images to build a Python development environment
  • Python script pulls Docker image problem

<<:  Implementation of a simple login page for WeChat applet (with source code)

>>:  Use jQuery to fix the invalid page anchor point problem under iframe

Recommend

HTML realizes real-time monitoring function of Hikvision camera

Recently the company has arranged to do some CCFA...

MySQL 8.0.20 Installation Tutorial with Pictures and Text (Windows 64-bit)

1: Download from mysql official website https://d...

Modify file permissions (ownership) under Linux

Linux and Unix are multi-user operating systems, ...

The easiest way to install MySQL 5.7.20 using yum in CentOS 7

The default database of CentOS7 is mariadb, but m...

Detailed instructions for installing mysql5.7 database under centos7.2

The mysql on the server is installed with version...

Docker builds Redis5.0 and mounts data

Table of contents 1. Simple mounting of persisten...

The most common mistakes in HTML tag writing

We better start paying attention, because HTML Po...

MySQL slow query operation example analysis [enable, test, confirm, etc.]

This article describes the MySQL slow query opera...

Detailed explanation of InnoDB storage files in MySQL

Physically speaking, an InnoDB table consists of ...

Detailed explanation of viewing and setting SQL Mode in MySQL

Viewing and Setting SQL Mode in MySQL MySQL can r...

Docker images export and import operations

What if the basic images have been configured bef...

Centos7 installation of Nginx integrated Lua sample code

Preface The computer I use is a Mac, and the oper...

What is the use of the enctype field when uploading files?

The enctype attribute of the FORM element specifie...

Nginx cache files and dynamic files automatic balancing configuration script

nginx Nginx (engine x) is a high-performance HTTP...