FROM node:lts-alpine WORKDIR /code COPY ./dist /code/dist COPY ./package*.json /code/ RUN npm install --only-production CMD ["npm", "run", "start"]