Please help me understand where the new folder is created. When I docker exec -it <mycontainer> bash the container, the created folder is not there.
Dockerfile:
FROM python:3.7-alpine
WORKDIR /app
RUN pip install -r requirements.txt
RUN mkdir -p /new_folder
COPY . .
CMD ["gunicorn", "-w 4", "main:app"]
I also tried copying the local stuff before creating a new folder, still can't see the folder created in the container.
