mirror of
https://github.com/kou029w/http-echo.git
synced 2025-01-30 21:58:00 +00:00
6 lines
81 B
Text
6 lines
81 B
Text
|
FROM node:alpine
|
||
|
ADD package.json .
|
||
|
RUN npm i
|
||
|
ADD index.js .
|
||
|
CMD ["npm","start"]
|