mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-04-25 07:52:38 -05:00
15 lines
600 B
Docker
15 lines
600 B
Docker
FROM node:8
|
|
|
|
# Headless Chrome config
|
|
# From: https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker
|
|
|
|
# Install latest chrome (dev) package.
|
|
# Note: this also installs the necessary libs so we don't need the previous RUN command.
|
|
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - &&\
|
|
sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' &&\
|
|
apt-get update &&\
|
|
apt-get install -y google-chrome-unstable
|
|
|
|
WORKDIR /app
|
|
CMD ["yarn", "cron"]
|