# file Dockerfile
FROM debian
WORKDIR /mydata
RUN echo "hi there!" > greetings.txt
# the created file is in /mydata/greetings.txt

