This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Required to install: | |
* starlette | |
* ariadne | |
* uvicorn | |
run via `uvicorn app:app` | |
""" | |
import logging | |
from dataclasses import dataclass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/buildkite/docker-puppeteer/blob/master/Dockerfile | |
FROM node:12.16.3-slim | |
RUN apt-get update \ | |
&& apt-get install -y wget gnupg ca-certificates \ | |
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ | |
&& 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 \ | |
# Install Chrome to get all the dependencies just to keep deps up to date |
OlderNewer