
Unfortunately not totally dead code paths, and special case behavior for them complicated commenting and sorting logic in a number of places.
17 lines
382 B
Docker
17 lines
382 B
Docker
FROM ubuntu:20.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update && apt -y upgrade && apt install -y supervisor python3-pip ffmpeg
|
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
|
|
COPY requirements.txt /etc/requirements.txt
|
|
|
|
RUN pip3 install -r /etc/requirements.txt
|
|
|
|
RUN mkdir /images && mkdir /songs
|
|
|
|
EXPOSE 80/tcp
|
|
|
|
CMD [ "/usr/bin/supervisord", "-c", "/etc/supervisord.conf" ]
|