Compare commits

...

1 commit

Author SHA1 Message Date
cc6cc82c67 chore(deps): pin dependencies
All checks were successful
ci/woodpecker/pr/workflow Pipeline was successful
2025-08-11 00:01:10 +00:00
3 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ steps:
when: when:
- event: [tag, manual, push, pull_request] - event: [tag, manual, push, pull_request]
branch: main branch: main
image: docker image: docker@sha256:c0872aae4791ff427e6eda52769afa04f17b5cf756f8267e0d52774c99d5c9de
environment: environment:
DOCKER_USERNAME: DOCKER_USERNAME:
from_secret: docker_public_username from_secret: docker_public_username

View file

@ -1,11 +1,11 @@
# Build stage of the application # Build stage of the application
FROM oven/bun AS build FROM oven/bun@sha256:78f46b81b82d767ee8d729411f6f95089a403c21f17c20a5789df00263d7c5b5 AS build
WORKDIR /app WORKDIR /app
COPY . . 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 AS production FROM cgr.dev/chainguard/nginx@sha256:18a5c9ebf0b896072855fb1ed146b17ab7fb1cdb341327a8ae8ac57ab81ceb5c 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.1.8", "@rsbuild/core": "1.4.15",
"@rsbuild/plugin-react": "^1.0.7", "@rsbuild/plugin-react": "1.3.5",
"@types/react": "^19.0.0", "@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0", "@types/react-dom": "^19.0.0",
"typescript": "^5.7.2" "typescript": "5.9.2"
} }
} }