Skip to content

Commit

Permalink
fix: dockerfile CMD path (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr authored Feb 1, 2023
1 parent 160e27c commit de60556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ COPY . .

RUN npm config set unsafe-perm true && npm ci && npm run build && npm prune --production

CMD ["node", "./dist/index.js"]
CMD ["node", "./dist/src/index.js"]
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "./tsconfig.json",
"exclude": [
"./tests/**/*.test.ts"
"./tests/**/*.ts"
]
}

0 comments on commit de60556

Please sign in to comment.