mirror of
https://github.com/qeeqbox/social-analyzer.git
synced 2026-08-29 19:29:35 +02:00
8 lines
197 B
Docker
8 lines
197 B
Docker
FROM node:latest
|
|
RUN apt-get update && apt-get install -y firefox-esr tesseract-ocr
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm install lodash
|
|
RUN npm install
|
|
COPY . .
|
|
CMD [ "npm", "start" ] |