1
0
Fork 0
mirror of https://github.com/kou029w/http-echo.git synced 2025-01-30 21:58:00 +00:00
http-echo/Dockerfile

6 lines
81 B
Text
Raw Normal View History

2020-05-16 17:52:49 +09:00
FROM node:alpine
ADD package.json .
RUN npm i
ADD index.js .
CMD ["npm","start"]