This file contains hidden or 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
| FROM python:3.8 | |
| ENV PYTHONUNBUFFERED 1 | |
| # Install node prereqs, nodejs and yarn | |
| # Ref: https://deb.nodesource.com/setup_10.x | |
| # Ref: https://yarnpkg.com/en/docs/install | |
| RUN \ | |
| apt-get update && \ | |
| apt-get install -yqq apt-transport-https xfonts-base xfonts-75dpi libsasl2-dev | |
| RUN \ |