Skip to content

Commit

Permalink
chore: upgraded go version and npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
pehlicd committed Aug 19, 2024
1 parent 7083ea0 commit df1f3d7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY ui /app/ui
RUN npm install
RUN npm run build

FROM golang:1.22 as backend-builder
FROM golang:1.23 as backend-builder

WORKDIR /app

Expand All @@ -28,4 +28,6 @@ RUN apk add libc6-compat

EXPOSE 8080

CMD ["rbac-wizard", "serve"]
ENTRYPOINT ["rbac-wizard"]

CMD ["serve"]
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pehlicd/rbac-wizard

go 1.22.3
go 1.23

require (
github.com/rakyll/statik v0.1.7
Expand Down
2 changes: 1 addition & 1 deletion internal/statik/statik.go

Large diffs are not rendered by default.

12 changes: 4 additions & 8 deletions ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rbac-wizard",
"version": "0.0.1",
"version": "0.0.4",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down Expand Up @@ -33,15 +33,15 @@
"clsx": "^2.0.0",
"d3": "^7.9.0",
"eslint": "8.48.0",
"eslint-config-next": "14.2.1",
"eslint-config-next": "^14.2.5",
"framer-motion": "^11.1.1",
"intl-messageformat": "^10.5.0",
"lodash.debounce": "^4.0.8",
"next": "^14.2.5",
"next-themes": "^0.2.1",
"postcss": "8.4.38",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-toastify": "^10.0.5",
"styled-components": "^6.1.11",
Expand All @@ -51,9 +51,5 @@
},
"devDependencies": {
"@types/d3": "^7.4.3"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}

0 comments on commit df1f3d7

Please sign in to comment.