Skip to content

Commit

Permalink
Merge pull request #53 from donghquinn/dev
Browse files Browse the repository at this point in the history
fixing docker file
  • Loading branch information
donghquinn authored Feb 19, 2024
2 parents d21b244 + 7ff6755 commit 1c18773
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-deploy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN yarn run build


# --- release ---
FROM base AS release
FROM node:20.3-alpine3.17 AS release

WORKDIR /home/node

Expand Down
1 change: 0 additions & 1 deletion src/providers/news/geek/geek.pvd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export class GeekProvider {
const total = await this.prisma.geekNewsCount(startDate, endDate, size);

NewsLogger.info('[GEEK] Get Total Count: %o', {
result,
total,
});

Expand Down
1 change: 0 additions & 1 deletion src/providers/news/hacker/hacker.pvd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export class HackersNewsProvider {
const total = await this.prisma.hackerNewsCount(startDate, endDate, size);

NewsLogger.info('[Hackers] Get Total Count: %o', {
result,
total,
});

Expand Down
1 change: 0 additions & 1 deletion src/providers/news/ml/machine.pvd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export class MachineLearningProvider {
const total = await this.prisma.mlTotalCount(startDate, endDate, size);

NewsLogger.info('[ML] Get Total Count: %o', {
result,
total,
});

Expand Down

0 comments on commit 1c18773

Please sign in to comment.