Dockerfile 316 B

123456789101112
  1. FROM ubuntu:22.04
  2. EXPOSE 80
  3. RUN apt-get update && apt-get install -y software-properties-common
  4. RUN add-apt-repository ppa:deluge-team/stable -y
  5. RUN apt-get update && apt-get install -y deluge-web
  6. ADD deluge-web_init.sh /sbin/deluge-web_init.sh
  7. RUN chmod +x /sbin/deluge-web_init.sh
  8. CMD /sbin/deluge-web_init.sh