from node:alpine3.10 WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY index.js avatar.jpg EXPOSE 8080 CMD [ "node", "index.js" ]