Files
social-analyzer/Dockerfile

10 lines
232 B
Docker
Executable File

FROM node:14.15.3-alpine3.12
WORKDIR /usr/src/app
COPY . .
RUN apk update && \
apk add --no-cache firefox-esr && \
npm install lodash && \
npm install --loglevel=error
EXPOSE 9005
ENTRYPOINT [ "npm", "start", "--","--docker"]