FROM node:latest WORKDIR /app COPY package.json ./ RUN npm install RUN npm install -D typescript COPY . . RUN tsc --build || npx -p typescript tsc --build CMD node dist/index.js