1
0
Fork 0
Discord-RTMP-Notice/Dockerfile

14 lines
345 B
Docker
Raw Normal View History

2020-06-07 16:12:25 +00:00
FROM debian:latest
WORKDIR /root/
2020-06-15 22:30:22 +00:00
RUN apt-get update && apt-get install -y ffmpeg curl php-cli php-xml rtmpdump screen
2020-06-07 16:12:25 +00:00
COPY start.sh /root/start.sh
COPY config.php /root/config.php
COPY start.php /root/start.php
2020-06-12 13:07:17 +00:00
COPY startMessage.json /root/startMessage.json
COPY endMessage.json /root/endMessage.json
2020-06-07 16:12:25 +00:00
RUN chmod +x start.sh
2020-06-07 16:21:45 +00:00
CMD bash start.sh