songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

Dockerfile (278B)


      1 FROM python:3-alpine
      2 
      3 WORKDIR /app
      4 
      5 COPY requirements.txt .
      6 RUN python3 -m pip install --no-cache-dir -r requirements.txt
      7 
      8 COPY songs2slides songs2slides
      9 
     10 CMD ["gunicorn", "-b", "0.0.0.0:5000", "songs2slides:create_app()", \
     11     "--access-logfile", "/var/log/songs2slides.log"]