7
All checks were successful
Deploy Backend / deploy (push) Successful in 2m2s
Deploy Website / deploy (push) Successful in 4m42s

This commit is contained in:
Lee 2024-10-05 00:12:22 +01:00
parent fd8e832581
commit 04ce91b459
3 changed files with 9 additions and 11 deletions

@ -9,9 +9,6 @@ WORKDIR /app
ARG GIT_REV ARG GIT_REV
ENV GIT_REV=${GIT_REV} ENV GIT_REV=${GIT_REV}
# Run in production mode
ENV NODE_ENV=production
# Copy necessary files for installation # Copy necessary files for installation
COPY package.json* pnpm-lock.yaml* pnpm-workspace.yaml* ./ COPY package.json* pnpm-lock.yaml* pnpm-workspace.yaml* ./
COPY common ./common COPY common ./common
@ -20,6 +17,9 @@ COPY backend ./backend
# Install all dependencies (for common and backend) # Install all dependencies (for common and backend)
RUN pnpm install RUN pnpm install
# Run in production mode
ENV NODE_ENV=production
# Build the common workspace first, then the backend # Build the common workspace first, then the backend
RUN pnpm --filter ...common build RUN pnpm --filter ...common build
RUN pnpm --filter ...backend build RUN pnpm --filter ...backend build

@ -17,9 +17,7 @@
"@nestjs/platform-fastify": "^10.4.4", "@nestjs/platform-fastify": "^10.4.4",
"@ssr/common": "workspace:*", "@ssr/common": "workspace:*",
"reflect-metadata": "^0.2.0", "reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1", "rxjs": "^7.8.1"
"tsup": "^8.3.0",
"typescript": "^5"
}, },
"devDependencies": { "devDependencies": {
"@nestjs/cli": "^10.0.0", "@nestjs/cli": "^10.0.0",
@ -39,6 +37,8 @@
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"supertest": "^7.0.0", "supertest": "^7.0.0",
"ts-loader": "^9.4.3", "ts-loader": "^9.4.3",
"ts-node": "^10.9.1" "ts-node": "^10.9.1",
"tsup": "^8.3.0",
"typescript": "^5"
} }
} }

@ -5,11 +5,9 @@
"dev": "tsup src/index.ts --watch", "dev": "tsup src/index.ts --watch",
"build": "tsup src/index.ts" "build": "tsup src/index.ts"
}, },
"dependencies": { "devDependencies": {
"@types/node": "^22.7.4",
"tsup": "^6.5.0", "tsup": "^6.5.0",
"typescript": "^5" "typescript": "^5"
},
"devDependencies": {
"@types/node": "^22.7.4"
} }
} }