cf-solver / Dockerfile
Samuel
update
a6f4920
raw
history blame contribute delete
390 Bytes
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"]