I have following Dockerfile
FROM python:3.6
MAINTAINER "Alexey Nikitin"
RUN pip install --upgrade pip
RUN pip install tensorflow
RUN pip install numpy pandas
RUN pip install keras --no-deps
RUN ["mkdir", "/tmp/data"]
RUN ["mkdir", "/var/log/result"]
RUN ["mkdir", "/model"]
ADD ./data /tmp/data
ADD ./model /model
WORKDIR /model
CMD ["python", "predict.py"]
The result of predict.py is text file saved in the same directory.
After running docker run -it toxic I see file executing. But when I enter container, I don't see created file.
How can I run container and save file created by script?
