Files
social-analyzer/Dockerfile
T
2025-01-11 01:16:54 +07:00

11 lines
246 B
Docker
Executable File

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