FROM node:stretch WORKDIR /app COPY . /app EXPOSE 23000 # # Install app dependencies # ENV NPM_CONFIG_LOGLEVEL warn # RUN yarn install # # Show current folder structure in logs # RUN ls -al -R # CMD [ "npm", "run", "serve" ]