FROM docker.internal.justin.tv/devtools/bionic/python3.9.0:latest

RUN \
  echo "deb https://deb.nodesource.com/node_14.x buster main" > /etc/apt/sources.list.d/nodesource.list && \
  wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
  echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
  wget -qO- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN apt-get update
RUN apt-get install -y python3.7 nodejs
RUN npm i -g npm@^6
RUN python3.7 -m pip install -U pip setuptools
RUN python3.7 -m pip install poetry

