This commit is contained in:
leehk 2025-04-11 18:46:31 +08:00
parent 41eb2c3944
commit eed89dced3
2 changed files with 3 additions and 1 deletions

View File

@ -80,5 +80,6 @@ RUN chown -R app:app $APP_HOME
# change to the app user # change to the app user
USER app USER app
# run gunicorn # run gunicorn
CMD pipenv run gunicorn --bind 0.0.0.0:$PORT backend.main:app -k uvicorn.workers.UvicornWorker CMD pipenv run gunicorn --bind 0.0.0.0:$PORT backend.main:app -k uvicorn.workers.UvicornWorker

View File

@ -38,6 +38,7 @@
"vitest": "^3.1.1" "vitest": "^3.1.1"
}, },
"optionalDependencies": { "optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "^3.28.0" "@rollup/rollup-linux-x64-musl": "^3.28.0",
"@rollup/rollup-linux-x64-gnu": "4.9.5"
} }
} }