feat: Add admin user, PIN-based password reset, and profile management
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
dvirlabs 2026-05-07 08:19:30 +03:00
parent 417b2ef877
commit 14d66d6823
3 changed files with 4 additions and 2 deletions

View File

@ -49,7 +49,7 @@ steps:
update-values-frontend:
name: Update frontend tag in values.yaml
image: harbor.dvirlabs.com/dockerhub/alpine:3.19
image: harbor.dvirlabs.com/base-images/alpine:3.19
when:
branch: [ master, develop ]
event: [ push ]
@ -76,7 +76,7 @@ steps:
update-values-backend:
name: Update backend tag in values.yaml
image: harbor.dvirlabs.com/dockerhub/alpine:3.19
image: harbor.dvirlabs.com/base-images/alpine:3.19
when:
branch: [ master, develop ]
event: [ push ]

View File

@ -28,3 +28,4 @@ ENV PYTHONUNBUFFERED=1
# Run the application
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]

View File

@ -58,3 +58,4 @@ EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]