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