mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
Use Docker Compose container running the idle script (the infinite loop) and perform subsequent calls to skeleton generator script using Docker `exec` command with the created container.
11 lines
187 B
Python
11 lines
187 B
Python
import sys
|
|
import time
|
|
|
|
if __name__ == '__main__':
|
|
if len(sys.argv) > 0:
|
|
started_message = sys.argv[1]
|
|
print(started_message)
|
|
|
|
while True:
|
|
time.sleep(100)
|