我已经在运行Windows 10 Pro的计算机上安装了Docker Engine Community edition for Windows。
我跑了docker build --tag my-python-app .
该命令生成了哪些文件,它们位于何处?
我也读过Where are Docker images stored on the host machine?。
最后,简单的Dockerfile包含:
FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD python ./index.py