FROM node:latest WORKDIR /work COPY . /work RUN npm install EXPOSE 3000 ENTRYPOINT ["npm", "run"] CMD ["start-local"]