Previously unexplored entrypoint technology has been explored. Now we can run commands after the entrypoint completes with the magical "$@" variable.
4 lines
48 B
Bash
4 lines
48 B
Bash
#!/bin/bash
|
|
|
|
gunicorn -b :8000 -w 4 config.wsgi
|