41 lines
1.1 KiB
Docker
41 lines
1.1 KiB
Docker
FROM node:20-bookworm
|
|
|
|
# We don't need the standalone Chromium
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
|
|
|
|
# Install Google Chrome Stable and fonts
|
|
# Note: this installs the necessary libs to make the browser work with Puppeteer.
|
|
RUN apt-get update && apt-get install gnupg wget -y && \
|
|
wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && \
|
|
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && \
|
|
apt-get update && \
|
|
apt-get install google-chrome-stable -y --no-install-recommends && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Playwright
|
|
RUN npx -y playwright@1.44.0 install --with-deps
|
|
|
|
# install ffmpeg
|
|
RUN apt-get update && apt-get install ffmpeg -y
|
|
|
|
# Setting up the work directory
|
|
WORKDIR /agent
|
|
|
|
#Copying all the files in our project
|
|
COPY . .
|
|
|
|
# Installing dependencies
|
|
RUN npm install
|
|
#RUN npm ci
|
|
|
|
# Starting our application
|
|
#CMD [ "npm", "run", "start" ]
|
|
|
|
#ENV DEBUG="puppeteer:*"
|
|
CMD [ "npm", "run", "dev" ]
|
|
|
|
# Exposing server port
|
|
EXPOSE 3020
|
|
|
|
# Expose Debugging port
|
|
EXPOSE 9229 |