8 lines
78 B
Docker
8 lines
78 B
Docker
FROM node:8
|
|
|
|
COPY . /img
|
|
WORKDIR /img
|
|
RUN npm i
|
|
EXPOSE 9119
|
|
CMD node index.js
|