cf / Dockerfile
RynnHub's picture
hmm
87be38f
raw
history blame
436 Bytes
# unknown
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", "src/index.js"]
CMD ["node", "src/index.js"]