5 lines
107 B
Docker
5 lines
107 B
Docker
FROM busybox
|
|
ADD testfile.txt .
|
|
RUN rm testfile.txt && mkdir app && echo "hello" > /app/othertestfile.txt
|
|
|