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
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM alpine:latest
COPY sleep.sh /
ENTRYPOINT ["/sleep.sh"]

6
sleep.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
while true; do
echo `date`;
sleep 60;
done