1
0
Fork 0
Discord-RTMP-Notice/Dockerfile

13 lines
276 B
Docker

FROM debian:latest
WORKDIR /root/
RUN apt-get update && apt-get install -y ffmpeg curl php-cli php-xml
COPY start.sh /root/start.sh
COPY config.php /root/config.php
COPY start.php /root/start.php
COPY message.json /root/message.json
RUN chmod +x start.sh
CMD bash start.sh