Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(keycloakify): update dependencies #1235

Merged
merged 11 commits into from
Mar 5, 2024
5 changes: 3 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ updates:
schedule:
interval: monthly
groups:
allUpdates:
minorAndPatch:
update-types:
- "minor"
- "patch"
- "major"
exclude-patterns:
- "keycloakify"
corneliusroemer marked this conversation as resolved.
Show resolved Hide resolved
10 changes: 7 additions & 3 deletions keycloak/keycloakify/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
FROM node:latest as builder
FROM node:21-bookworm as builder

USER root
RUN apt-get update && apt-get install -y maven

RUN mvn --version

RUN yarn versions

WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build-keycloak-theme

FROM alpine:latest
FROM alpine:3.19
RUN mkdir /output
COPY --from=builder /app/build_keycloak/target/*.jar /output/
RUN apk add --no-cache wget curl
Expand Down
19 changes: 11 additions & 8 deletions keycloak/keycloakify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"keywords": [],
"dependencies": {
"evt": "^2.5.7",
"keycloakify": "^9.3.0",
"react": "18.1.0",
"react-dom": "18.1.0"
"keycloakify": "~9.4.4",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.16",
Expand All @@ -34,12 +34,15 @@
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^15.3.1",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"react-scripts": "5.0.1",
"@types/node": "~20.11.24",
"@types/react": "^18.2.62",
"@types/react-dom": "^18.2.19",
"react-scripts": "^5.0.1",
"rimraf": "^5.0.5",
"typescript": "~4.7.0"
"typescript": "~5.1.6"
},
"resolutions": {
"strip-ansi": "6.0.1"
},
"eslintConfig": {
"extends": [
Expand Down
Loading
Loading