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 312B

1234567891011121314
  1. FROM robinthoni/debian-multiarch:jessie
  2. MAINTAINER Robin Thoni <robin@rthoni.com>
  3. RUN mkdir -p /data/output
  4. RUN apt-get update &&\
  5. apt-get install -y debootstrap squashfs-tools &&\
  6. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  7. COPY ./run.sh /
  8. COPY ./run_chroot.sh /
  9. CMD ["/run.sh"]