[READ-ONLY] Mirror of https://github.com/shuuji3/express-sample. Sample project of Express.js
0

Configure Feed

Select the types of activity you want to include in your feed.

Add Dockerfile.

+10
+10
Dockerfile
··· 1 + FROM node 2 + 3 + COPY package.json . 4 + RUN npm install 5 + 6 + COPY . . 7 + 8 + EXPOSE 3000 9 + 10 + CMD ["npm", "start"]