Initial commit

This commit is contained in:
containers
2021-10-05 18:02:08 +00:00
commit dc4dc27121
4 changed files with 194 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM scratch
RUN echo "hello world"
COPY example.txt /
ENV VAR=1
CMD ["sleep", "infinity"]