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.
 
 

10 lines
683 B

  1. FROM debian:stretch-slim
  2. RUN DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get -qqy --no-install-recommends -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-unsafe-io update \
  3. && DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get -qqy --no-install-recommends -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-unsafe-io install python python2.7 rsync git ca-certificates curl
  4. COPY * factory/
  5. RUN git clone https://github.com/alard/megawarc.git /factory/megawarc
  6. WORKDIR /factory
  7. COPY docker-boot.sh /
  8. RUN chmod +x /docker-boot.sh
  9. ENTRYPOINT ["/docker-boot.sh"]