Fix code review issues: update datetime.utcnow() to datetime.now(timezone.utc) and fix Docker configs

Co-authored-by: mblanke <9078342+mblanke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-09 14:33:21 +00:00
parent 961946026a
commit 277387ce35
9 changed files with 26 additions and 17 deletions

8
frontend/.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
node_modules
npm-debug.log
build
.git
.gitignore
README.md
.env
.env.local

View File

@@ -3,7 +3,8 @@ FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY package.json ./
COPY package-lock.json* ./
# Install dependencies
RUN npm install