This commit is contained in:
2025-11-23 14:34:45 +01:00
commit ca7bef3272
2 changed files with 11 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM alpine:latest
COPY sleep.sh /
ENTRYPOINT ["/sleep.sh"]
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
while true; do
echo `date`;
sleep 60;
done