I've installed Docker Engine Community edition for Windows on a computer running Windows 10 Pro.
I ran docker build --tag my-python-app .
Which files did the command produce and where are they located?
Also, I've read a Where are Docker images stored on the host machine?.
Lastly, the simple Dockerfile contains:
FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD python ./index.py