docker学习仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
315 B

# 将image文件继承与官方的3.8版本的Python
FROM python:3.8
# 将当前目录下的所有文件(除了.dockerignore排除的路径),都拷贝进image文件的/app目录。
COPY . /app
# 指定接下来的工作路径为/app
WORKDIR /app
# 在/app目录下,运行python文件
CMD python3 hello.py