fix: Resolve TypeScript type error and Docker warning

- Make createUser field required in FormData interface to match yup schema
- Add explicit optional handling for username/password in yup schema
- Fix Docker FROM casing warning (as -> AS)
- Ensure TypeScript compilation passes without errors

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-23 13:55:01 +02:00
parent 3bbb6b4135
commit 7ba1b8b054
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# Build stage
FROM node:20-alpine as builder
FROM node:20-alpine AS builder
WORKDIR /app