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.

14 lines
260 B

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 sh install.sh && rm install.sh
  7. ENV PATH=/root/.cargo/bin:$PATH
  8. VOLUME ["/source"]
  9. WORKDIR /source
  10. CMD ["bash"]