I am a newby in docker
My Dockerfile
FROM python:3
WORKDIR /app
COPY . /app
RUN pip install numpy
RUN pip install pandas
CMD ["python", "app.py"]
And in app.py I have a line
pd.DataFrame(predictions, columns=['predictions']).to_csv('output.csv')
I build and run the image, that's ok but I can not to save this dataframe in my work directory. How to change Dockerfile so that I can do it?
output.csvnot being created in/appat all?