all repos — FixYouTube-legacy @ dc439938a19e7440a7e26c8fd9481610c51d6a5a

A better way to embed YouTube videos everywhere (inspired by FixTweet).

Dockerfile (view raw)

 1FROM tecktron/python-waitress:slim
 2
 3WORKDIR /app
 4
 5RUN pip install --upgrade pip
 6COPY ./requirements.txt .
 7RUN pip install -r requirements.txt
 8
 9COPY ./fxyoutube ./fxyoutube
10ENV APP_MODULE=fxyoutube:app