mirror of
https://github.com/qeeqbox/social-analyzer.git
synced 2026-08-20 04:35:41 +02:00
10 lines
213 B
Docker
10 lines
213 B
Docker
FROM node:14.15.3-alpine3.12
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
RUN apk update && \
|
|
apk add --no-cache firefox-esr tesseract-ocr && \
|
|
npm install lodash && \
|
|
npm install
|
|
EXPOSE 9005
|
|
ENTRYPOINT [ "npm", "start" ]
|