FROM node:latest WORKDIR /usr/src/app COPY ./ ./ RUN sed -i '1i\' ./public/index.html RUN npm install EXPOSE 8081 CMD [ "node", "index.js" ]