Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1 — build the React app
FROM node:22-alpine AS build
FROM node:22-alpine@sha256:e4bf2a82ad0a4037d28035ae71529873c069b13eb0455466ae0bc13363826e34 AS build

WORKDIR /app

Expand All @@ -22,7 +22,7 @@ COPY public/ ./public/
RUN npm run build

# Stage 2 — serve with nginx
FROM nginx:alpine AS serve
FROM nginx:alpine@sha256:1d13701a5f9f3fb01aaa88cef2344d65b6b5bf6b7d9fa4cf0dca557a8d7702ba AS serve

# Copy the static build output
COPY --from=build /app/dist /usr/share/nginx/html
Expand Down
52 changes: 22 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@
"react-router": "^7.6.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.7",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.15.0",
"@axe-core/playwright": "4.11.1",
"@playwright/test": "1.58.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.19.13",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.2.0",
"jsdom": "^26.1.0",
"sass": "^1.89.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.0"
"@vitejs/plugin-react": "4.7.0",
"@vitest/coverage-v8": "3.2.4",
"jsdom": "26.1.0",
"sass": "1.97.3",
"typescript": "5.9.3",
"vite": "6.4.1",
"vitest": "3.2.4"
}
}