feat(infra/nginx): Fixed nginx redirection and fixed dockerfiles

- nginx now use "raw" proxy_pass, where it doesnt supply the $uri since
  if only the host is provided, nginx will handle lots of usecases
- pnpm now uses the lockfile correctly
- Docker: use lockfile in all steps
- Docker: install the necessary packages if building from source is
  needed (better-sqlite3 for example)
This commit is contained in:
Maieul BOYER 2025-10-25 15:35:02 +02:00 committed by Maix0
parent 2074f8d8f1
commit 26627cd4d7
7 changed files with 3886 additions and 5966 deletions

View file

@ -1,6 +1,6 @@
#forward the post request to the microservice
location /api/auth/ {
proxy_pass http://auth$uri;
proxy_pass http://auth;
}
location / {