Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions processor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ WORKDIR /app

COPY ./package*.json ./

RUN npm install --production --frozen-lockfile
RUN npm install --frozen-lockfile

COPY . .

RUN npm run build
RUN npm run build && npm prune --production

FROM node:18-alpine AS runner

Expand Down
4 changes: 2 additions & 2 deletions processor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
"node": ">=18.0.0 <=20.9.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"@types/node-fetch": "^2.6.11",
"@types/validator": "^13.12.0",
"@tsconfig/recommended": "^1.0.7",
"@types/node": "^18.19.39",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"concurrently": "^8.2.2",
Expand Down