3 lines
109 B
Docker
3 lines
109 B
Docker
FROM registry.access.redhat.com/ubi8/ubi:8.0
|
|
USER 1001
|
|
CMD bash -c "while true; do echo test; sleep 5; done"
|