# Dockerfile to build which-api image FROM node:12 WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 3030 CMD ["npm", "start"]