2024-10-31 19:17:58 +01:00
|
|
|
FROM node:lts-slim
|
2024-10-30 16:24:34 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-11-01 08:55:54 +01:00
|
|
|
COPY package.json ./
|
|
|
|
|
2024-10-30 16:24:34 +00:00
|
|
|
RUN npm install --omit=dev
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2024-11-01 08:55:54 +01:00
|
|
|
# Build without type checking, as we have removed the Typescript
|
|
|
|
# dev-dependencies above to save space in the final build
|
|
|
|
RUN npx tsc --noCheck
|
2024-10-30 16:24:34 +00:00
|
|
|
|
|
|
|
CMD [ "node", "dist/index.js" ]
|