config: add dockerfile (#214)

* config: add dockerfile

* feat: add working dockerfile for nest and next app with sqlite migration

---------

Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
Manuel
2024-03-16 15:51:34 +01:00
committed by GitHub
parent a4951037e3
commit 98c353349a
13 changed files with 217 additions and 147 deletions

View File

@@ -26,7 +26,9 @@
"nest-winston": "^1.9.4",
"reflect-metadata": "^0.2.1",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1"
"rxjs": "^7.8.1",
"vite": "^5.1.6",
"vite-plugin-node": "^3.1.0"
},
"devDependencies": {
"@homarr/eslint-config": "workspace:^0.2.0",
@@ -44,9 +46,7 @@
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-node": "^3.1.0"
"typescript": "^5.4.2"
},
"eslintConfig": {
"root": true,

View File

@@ -4,6 +4,7 @@ import "@homarr/auth/env.mjs";
/** @type {import("next").NextConfig} */
const config = {
output: "standalone",
reactStrictMode: true,
/** Enables hot reloading for local packages without a build step */
transpilePackages: [

View File

@@ -53,7 +53,8 @@
"react-dom": "18.2.0",
"sass": "^1.72.0",
"superjson": "2.2.1",
"use-deep-compare-effect": "^1.8.1"
"use-deep-compare-effect": "^1.8.1",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@homarr/eslint-config": "workspace:^0.2.0",