File size: 390 Bytes
15f7aec a6f4920 15f7aec | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | FROM node:latest
RUN apt-get update && apt-get install -y \
wget \
gnupg \
ca-certificates \
apt-transport-https \
chromium \
chromium-driver \
xvfb \
&& rm -rf /var/lib/apt/lists/*
ENV CHROME_BIN=/usr/bin/chromium
WORKDIR /app
COPY package*.json ./
RUN npm update
RUN npm install
RUN npm i -g pm2
COPY . .
EXPOSE 7860
CMD ["pm2-runtime", "index.js"]
|