Skip to content

Commit

Permalink
Merge pull request #91 from Deep-Consulting-Solutions/feat/update-inc…
Browse files Browse the repository at this point in the history
…ident-handling

Feat/update incident handling
  • Loading branch information
tochukwualor authored Jul 10, 2024
2 parents 0b81a7d + 9d01234 commit 5d7128d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/images/n8n-custom/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ RUN corepack enable && corepack prepare --activate
USER node

RUN printf "@deep-consulting-solutions:registry=https://npm.pkg.github.com/\nalways-auth=true\n//npm.pkg.github.com/:_authToken=%s" $TOKEN_FOR_PACKAGES >> .npmrc
RUN pnpm install --frozen-lockfile
RUN pnpm install --frozen-lockfile --force
RUN pnpm build
RUN rm -rf node_modules
RUN jq 'del(.pnpm.patchedDependencies)' package.json > package.json.tmp; mv package.json.tmp package.json
RUN jq '{name: .name, version: .version}' packages/editor-ui/package.json > editor-ui.tmp; mv editor-ui.tmp packages/editor-ui/package.json
RUN jq '{name: .name, version: .version}' packages/design-system/package.json > design-system.tmp; mv design-system.tmp packages/design-system/package.json
RUN NODE_ENV=production pnpm install --prod --no-optional
RUN NODE_ENV=production pnpm install --prod --no-optional --force
RUN find . -type f -name "*.ts" -o -name "*.js.map" -o -name "*.vue" -o -name "tsconfig.json" -o -name "*.tsbuildinfo" | xargs rm -rf
RUN rm -rf packages/@n8n_io/eslint-config packages/editor-ui/src packages/editor-ui/node_modules packages/design-system
RUN rm -rf patches .npmrc *.yaml node_modules/.cache packages/**/node_modules/.cache packages/**/.turbo .config .cache .local .node /tmp/*
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/reusables/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export const getIncidentHandlerConfig = ({
},
redis,
zoho: {
concurrencyManagerUrl: process.env.MANAGER_URL! || '',
desk: {
config: {
accountsUrl:
Expand Down

0 comments on commit 5d7128d

Please sign in to comment.