I have below Dockerfile:
FROM python:3 RUN mkdir -p /test/code/ RUN mkdir -p /test/logs/ RUN mkdir -p /test/configs/ ADD test.py /test/code/ ADD test_outpu
Also make sure to not add in the .dockerignore file a file or folder that is needed during the image building process.
.dockerignore file