Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

12 righe
691 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 up
  3. date \
  4. && 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 in
  5. stall python python2.7 rsync git ca-certificates curl
  6. COPY files/* factory/
  7. RUN git clone https://github.com/alard/megawarc.git /factory/megawarc
  8. WORKDIR /factory
  9. COPY docker-boot.sh /
  10. RUN chmod +x /docker-boot.sh
  11. ENTRYPOINT ["/docker-boot.sh"]