Files
dokku/tests/apps/dockerfile-app-json-formations/worker.js
Jose Diaz-Gonzalez 5dcc1cb13c refactor: remove support for DOKKU_SCALE file
It has been replaced by the 'formations' key within the 'app.json' file format.
2023-01-15 23:53:03 -05:00

7 lines
108 B
JavaScript

function worker() {
console.log('sleeping for 60 seconds');
setTimeout(worker, 60 * 1000);
}
worker();