Compare commits

..

1 commit

Author SHA1 Message Date
176860239a chore(deps): pin dependencies
All checks were successful
ci/woodpecker/pr/workflow Pipeline was successful
2025-08-01 00:06:20 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ COPY . .
RUN bun i && bun run build RUN bun i && bun run build
# Production stage to run the application # Production stage to run the application
FROM cgr.dev/chainguard/nginx@sha256:e1ddf5a7d55d8a0026ced0afe3c9e5ae065aec8c078e07284236c388f0e6c45b AS production FROM cgr.dev/chainguard/nginx@sha256:a3d9a503bc80ab7f33c567ac773e47f27a3f45d044ec6ce002c4553150b20b4b AS production
COPY --from=build /app/dist /usr/share/nginx/html COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8080 EXPOSE 8080
ENTRYPOINT ["nginx", "-g", "daemon off;"] ENTRYPOINT ["nginx", "-g", "daemon off;"]

View file

@ -12,10 +12,10 @@
"react-dom": "^19.0.0" "react-dom": "^19.0.0"
}, },
"devDependencies": { "devDependencies": {
"@rsbuild/core": "1.4.11", "@rsbuild/core": "1.4.12",
"@rsbuild/plugin-react": "1.3.4", "@rsbuild/plugin-react": "1.3.4",
"@types/react": "^19.0.0", "@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0", "@types/react-dom": "^19.0.0",
"typescript": "5.8.3" "typescript": "5.9.2"
} }
} }