7 lines
64 B
Docker
7 lines
64 B
Docker
FROM node
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
CMD [ "node", "index.js" ] |