fix: correct gradle version in docker file
All checks were successful
Deploy Miniplan / build (push) Successful in 4m16s

This commit is contained in:
walamana 2024-08-07 20:31:44 +02:00
parent dde21c3ac5
commit d24457a4f6
3 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM gradle:latest as build_backend
FROM gradle:7.5.1 as build_backend
COPY --chown=gradle:gradle /private/minis-backend /home/gradle/src
WORKDIR /home/gradle/src

View File

@ -8,6 +8,7 @@
"name": "minis-new",
"version": "0.0.0",
"dependencies": {
"rxjs": "^7.8.1",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
@ -1858,6 +1859,14 @@
"fsevents": "~2.3.2"
}
},
"node_modules/rxjs": {
"version": "7.8.1",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/safe-array-concat": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz",
@ -2105,8 +2114,7 @@
"node_modules/tslib": {
"version": "2.6.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz",
"integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==",
"dev": true
"integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig=="
},
"node_modules/typed-array-buffer": {
"version": "1.0.0",

View File

@ -10,6 +10,7 @@
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
},
"dependencies": {
"rxjs": "^7.8.1",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},