rDrama/Dockerfile

18 lines
414 B
Docker
Raw Normal View History

2022-03-02 00:14:08 +00:00
FROM ubuntu:20.04
2021-10-15 14:08:27 +00:00
2022-02-22 13:58:30 +00:00
ARG DEBIAN_FRONTEND=noninteractive
2022-02-22 13:34:41 +00:00
RUN apt update && apt -y upgrade && apt install -y supervisor python3-pip libenchant1c2a ffmpeg
2022-02-18 14:39:43 +00:00
2022-02-18 14:52:04 +00:00
COPY supervisord.conf /etc/supervisord.conf
2022-02-18 14:23:14 +00:00
COPY requirements.txt /etc/requirements.txt
2022-02-18 12:27:34 +00:00
2022-02-18 14:39:43 +00:00
RUN pip3 install -r /etc/requirements.txt
2022-02-18 13:47:17 +00:00
RUN mkdir /images && mkdir /songs
2021-10-15 14:08:27 +00:00
EXPOSE 80/tcp
2022-03-02 00:14:08 +00:00
CMD [ "/usr/bin/supervisord", "-c", "/etc/supervisord.conf" ]