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.

12 lines
249 B

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. FROM debian:wheezy
  2. LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
  3. # needed by cargo
  4. ENV USER root
  5. ADD install.sh install.sh
  6. RUN chmod +x install.sh && ./install.sh && rm install.sh
  7. VOLUME ["/source"]
  8. WORKDIR /source
  9. CMD ["bash"]