選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
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"]