🐛 Extract contents of directory (#4)

This commit is contained in:
Samuel Ryan 2020-09-06 18:47:06 +01:00 committed by GitHub
parent 0f83fca17f
commit 7d86f1b9ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 103 additions and 59 deletions

11
.github/tests/Dockerfile vendored Normal file
View file

@ -0,0 +1,11 @@
FROM alpine
RUN mkdir -p /files/x
RUN mkdir -p /files/y
RUN echo "Hello, World 1! \$(date)" > /files/001.txt
RUN echo "Hello, World 2! \$(date)" > /files/002.txt
RUN echo "Hello, World 3! \$(date)" > /files/003.txt
RUN echo "Hello, World 4! \$(date)" > /files/x/004.txt
RUN echo "Hello, World 5! \$(date)" > /files/x/005.txt
RUN echo "Hello, World 6! \$(date)" > /files/y/006.txt