मैं डॉकटर इमेज बनाना चाहता हूं। यह मेरी कार्य निर्देशिका है: Dockerfile.in test.json test.py
और यह मेरा डॉकफाइल है:
COPY ./test.json /home/test.json
COPY ./test.py /home/test.py
RUN python test.py
जब मैं यह कमांड लॉन्च करता हूं:
docker build -f Dockerfile.in -t 637268723/test:1.0 .
यह मुझे यह त्रुटि देता है:
`Step 1/5 : COPY ./test.json /home/test.json
---> Using cache
---> 6774cd225d60
Step 2/5 : COPY ./test.py /home/test.py
COPY failed: stat /var/lib/docker/tmp/docker-builder428014112/test.py:
no such file or directory`
क्या कोई मेरी मदद कर सकता है?