config: fix imports not working correctly

this patch moves the rootDir of the typescript project up a directory
this moves all content in the dist directory inside the new src directory

I couldn't find other way
This commit is contained in:
Wroclaw 2023-09-21 20:43:43 +02:00
parent 46bb5c867d
commit 18646b9dc6
4 changed files with 15 additions and 7 deletions

View file

@ -15,4 +15,4 @@ COPY src ./src
RUN npx tsc
# Run the app
CMD ["node", "dist/index.js"]
CMD ["node", "dist/src/index.js"]