Wroclaw
18646b9dc6
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
18 lines
264 B
Docker
18 lines
264 B
Docker
FROM node:18
|
|
WORKDIR /app
|
|
|
|
# Packages
|
|
COPY package*.json ./
|
|
RUN npm install -D
|
|
|
|
# Database schema
|
|
COPY schema.prisma .
|
|
RUN npx prisma generate
|
|
|
|
# Typescript compiling
|
|
COPY tsconfig.json .
|
|
COPY src ./src
|
|
RUN npx tsc
|
|
|
|
# Run the app
|
|
CMD ["node", "dist/src/index.js"]
|