Files
social-analyzer/Dockerfile
T
2020-11-30 11:06:02 -08:00

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" ]