Add Docker support with build and push workflow, and configure Gunicorn for application serving
All checks were successful
Build and push Docker image / build (push) Successful in 2m14s
All checks were successful
Build and push Docker image / build (push) Successful in 2m14s
This commit is contained in:
parent
3d180d3359
commit
fd09bf8aa3
6 changed files with 67 additions and 0 deletions
5
entrypoint.sh
Executable file
5
entrypoint.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env sh
|
||||
cd /app
|
||||
uv run manage.py collectstatic --noinput
|
||||
uv run manage.py migrate --noinput
|
||||
uv run gunicorn --bind :8000 --workers 2 musik.wsgi:application
|
Loading…
Add table
Add a link
Reference in a new issue