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