You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 502B

1234567891011121314151617181920212223242526
  1. FROM robinthoni/debian-multiarch:jessie
  2. ARG CONFIG_DIR=/etc/default/config-files/
  3. RUN apt-get update &&\
  4. apt-get install -y ssmtp abcde eyed3 lame eject lshw &&\
  5. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
  6. rm /etc/cron.*/*
  7. COPY ./vars-vars /etc/vars-vars
  8. COPY ./vars-files /etc/vars-files
  9. COPY ./common.sh /common.sh
  10. COPY run.sh /run.sh
  11. RUN mkdir "${CONFIG_DIR}"
  12. COPY ./config "${CONFIG_DIR}"
  13. COPY ./bin /usr/local/bin
  14. WORKDIR /data/music
  15. CMD ["/run.sh"]