Docker构建自己的镜像

最近在研究GitHub Action,攒了几个Dockerfile,并构建了自己的镜像,代码如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12

FROM python:3.8.6

# Copies your code file from your action repository to the filesystem path `/` of the container
COPY adjust_pictures_in_md_files.py adjust_pictures_in_md_files.py
COPY entrypoint.sh entrypoint.sh

RUN chmod +x entrypoint.sh

# Code file to execute when the docker container starts up (`entrypoint.sh`)
CMD ["/entrypoint.sh"]

运行的指令如下:


docker build -t tmp:v1 .

我目前用的指令还比较简单,因为我还没有抽出时间系统、深入的学习Docker,先记录一下吧。