Skip to content

Commit de60556

Browse files
authored
fix: dockerfile CMD path (#91)
1 parent 160e27c commit de60556

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ COPY . .
55

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

8-
CMD ["node", "./dist/index.js"]
8+
CMD ["node", "./dist/src/index.js"]

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
33
"exclude": [
4-
"./tests/**/*.test.ts"
4+
"./tests/**/*.ts"
55
]
66
}

0 commit comments

Comments
 (0)