1
0
Fork 0
mirror of https://github.com/kou029w/http-echo.git synced 2025-01-18 08:05:06 +00:00
http-echo/Dockerfile

8 lines
106 B
Text
Raw Permalink Normal View History

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