This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
FROM node:latest as build
|
||||
FROM node:18 as build
|
||||
|
||||
# Change to the project directory
|
||||
WORKDIR /usr/local/app
|
||||
|
||||
# Copy the project files to the container
|
||||
COPY frontend/ /usr/local/app/
|
||||
COPY . /usr/local/app/
|
||||
|
||||
# Install dependencies
|
||||
RUN npm install
|
||||
@@ -16,8 +16,8 @@ FROM nginx:latest
|
||||
COPY --from=build /usr/local/app/dist/aktienbot /usr/share/nginx/html
|
||||
|
||||
# Copy configuration files
|
||||
COPY frontend/deploy/nginx.conf /etc/nginx
|
||||
COPY frontend/deploy deploy/
|
||||
COPY ./deploy/nginx.conf /etc/nginx
|
||||
COPY ./deploy deploy/
|
||||
|
||||
# Change file permissions
|
||||
RUN chmod +x ./deploy/healthcheck.sh
|
||||
|
11259
frontend/package-lock.json
generated
11259
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -4,50 +4,50 @@
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
"build": "ng build --configuration production --build-optimizer",
|
||||
"watch": "ng build --configuration development --watch",
|
||||
"build": "ng build --prod --build-optimizer",
|
||||
"watch": "ng build --watch --configuration development",
|
||||
"test": "ng test",
|
||||
"lint": "ng lint",
|
||||
"compodoc": "npx compodoc -p tsconfig.doc.json"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "~15.0.0",
|
||||
"@angular/cdk": "^15.0.0",
|
||||
"@angular/common": "~15.0.0",
|
||||
"@angular/compiler": "~15.0.0",
|
||||
"@angular/core": "~15.0.0",
|
||||
"@angular/forms": "~15.0.0",
|
||||
"@angular/material": "^15.0.0",
|
||||
"@angular/platform-browser": "~15.0.0",
|
||||
"@angular/platform-browser-dynamic": "~15.0.0",
|
||||
"@angular/router": "~15.0.0",
|
||||
"bootstrap": "^5.1.3",
|
||||
"ngx-cron-editor": "^0.7.3",
|
||||
"rxjs": "~7.6.0",
|
||||
"tslib": "^2.4.0",
|
||||
"zone.js": "~0.12.0"
|
||||
"@angular/animations": "~13.2.0",
|
||||
"@angular/cdk": "~13.2.6",
|
||||
"@angular/common": "~13.2.0",
|
||||
"@angular/compiler": "~13.2.0",
|
||||
"@angular/core": "~13.2.0",
|
||||
"@angular/forms": "~13.2.0",
|
||||
"@angular/material": "13.2.6",
|
||||
"@angular/platform-browser": "~13.2.0",
|
||||
"@angular/platform-browser-dynamic": "~13.2.0",
|
||||
"@angular/router": "~13.2.0",
|
||||
"bootstrap": "5.1.3",
|
||||
"ngx-cron-editor": "0.7.3",
|
||||
"rxjs": "~7.5.0",
|
||||
"tslib": "2.4.0",
|
||||
"zone.js": "~0.11.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~15.0.0",
|
||||
"@angular-eslint/builder": "15.1.0",
|
||||
"@angular-eslint/eslint-plugin": "15.1.0",
|
||||
"@angular-eslint/eslint-plugin-template": "15.1.0",
|
||||
"@angular-eslint/schematics": "15.1.0",
|
||||
"@angular-eslint/template-parser": "15.1.0",
|
||||
"@angular/cli": "~15.0.0",
|
||||
"@angular/compiler-cli": "~15.0.0",
|
||||
"@types/jasmine": "~4.3.0",
|
||||
"@types/node": "^18.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.46.1",
|
||||
"@typescript-eslint/parser": "5.46.1",
|
||||
"@angular-devkit/build-angular": "~13.3.5",
|
||||
"@angular-eslint/builder": "13.2.1",
|
||||
"@angular-eslint/eslint-plugin": "13.2.1",
|
||||
"@angular-eslint/eslint-plugin-template": "13.2.1",
|
||||
"@angular-eslint/schematics": "13.2.1",
|
||||
"@angular-eslint/template-parser": "13.2.1",
|
||||
"@angular/cli": "~13.3.5",
|
||||
"@angular/compiler-cli": "~13.2.0",
|
||||
"@types/jasmine": "~4.0.3",
|
||||
"@types/node": "^12.11.1",
|
||||
"@typescript-eslint/eslint-plugin": "5.23.0",
|
||||
"@typescript-eslint/parser": "5.22.0",
|
||||
"eslint": "^8.15.0",
|
||||
"jasmine-core": "~4.5.0",
|
||||
"karma": "~6.4.0",
|
||||
"jasmine-core": "~4.1.0",
|
||||
"karma": "~6.3.19",
|
||||
"karma-chrome-launcher": "~3.1.0",
|
||||
"karma-coverage": "~2.2.0",
|
||||
"karma-jasmine": "~5.1.0",
|
||||
"karma-jasmine-html-reporter": "~2.0.0",
|
||||
"typescript": "~4.9.0"
|
||||
"karma-jasmine": "~5.0.0",
|
||||
"karma-jasmine-html-reporter": "~1.7.0",
|
||||
"typescript": "~4.5.2"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user